Files
Blitz/include/client/display/InputManager.h
2023-11-09 19:50:08 +01:00

14 lines
258 B
C++

#pragma once
#include <SDL2/SDL_events.h>
#include <functional>
namespace blitz {
namespace InputManager {
void BindKeyDownCallback(const std::function<void(int)>&);
void ProcessEvent(SDL_Event& event);
} // namespace InputManager
} // namespace blitz