16 lines
241 B
C++
16 lines
241 B
C++
#pragma once
|
|
|
|
#include "common.h"
|
|
#include <SDL2/SDL.h>
|
|
|
|
namespace GUIKeyboard
|
|
{
|
|
extern SDL_Keycode key;
|
|
extern bool shift;
|
|
extern bool alt;
|
|
extern bool cmd;
|
|
|
|
void ReceiveKeyboardEvent(const SDL_Keycode key);
|
|
void Reset();
|
|
}
|