15 lines
254 B
C
15 lines
254 B
C
|
|
#ifndef ARC_SDL_KEYBOARD_H_
|
||
|
|
#define ARC_SDL_KEYBOARD_H_
|
||
|
|
|
||
|
|
#include "arc/input/keyboard.h"
|
||
|
|
#include <SDL3/SDL.h>
|
||
|
|
|
||
|
|
struct ARC_Keyboard {
|
||
|
|
SDL_Event *event;
|
||
|
|
|
||
|
|
ARC_KeyboardState *keys;
|
||
|
|
ARC_KeyboardState *released;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // !ARC_SDL_KEYBOARD_H_
|