16 lines
262 B
C
16 lines
262 B
C
|
|
#ifndef ARC_SDL_INPUT_H_
|
||
|
|
#define ARC_SDL_INPUT_H_
|
||
|
|
|
||
|
|
#include "arc/input/keyboard.h"
|
||
|
|
#include "arc/input/mouse.h"
|
||
|
|
#include <SDL3/SDL.h>
|
||
|
|
|
||
|
|
struct ARC_Input {
|
||
|
|
ARC_Keyboard *keyboard;
|
||
|
|
ARC_Mouse *mouse;
|
||
|
|
|
||
|
|
SDL_Event *event;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // !ARC_SDL_INPUT_H_
|