1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-19 08:52:33 +02:00
openrw/rwgame/GameInput.hpp

11 lines
214 B
C++
Raw Normal View History

#ifndef RWGAME_GAMEINPUT_HPP
#define RWGAME_GAMEINPUT_HPP
#include "engine/GameState.hpp"
#include <SDL.h>
namespace GameInput {
void updateGameInputState(GameInputState* state, const SDL_Event& event);
}
#endif