Initial commit

This commit is contained in:
2021-12-01 03:29:18 +00:00
parent 7fb0a74b7e
commit 3dcaf6df81
72 changed files with 16530 additions and 0 deletions

18
source/engine/input.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef INPUT_H
#define INPUT_H
#include <SDL.h>
#include <stdint.h>
extern int32_t mouseWheelX;
extern int32_t mouseWheelY;
extern int ychange;
extern int xchange;
extern float deltaT;
extern int quit;
extern SDL_Event e;
extern uint8_t *currentKeystates;
void input_poll();
#endif