1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00
openrw/rwgame/GameInput.hpp

13 lines
214 B
C++
Raw Normal View History

#ifndef RWGAME_GAMEINPUT_HPP
#define RWGAME_GAMEINPUT_HPP
2018-12-09 22:43:42 +01:00
#include <SDL_events.h>
struct GameInputState;
namespace GameInput {
void updateGameInputState(GameInputState* state, const SDL_Event& event);
}
#endif