ODE/src/game_engine.h

9 lines
188 B
C
Raw Normal View History

2021-08-17 22:14:09 +02:00
#ifndef _GAME_ENGINE_H
#define _GAME_ENGINE_H
#include <gint/keyboard.h>
2021-08-18 16:37:59 +02:00
#include "map.h"
2021-08-17 22:14:09 +02:00
2021-08-17 23:08:50 +02:00
void keyboard_manager(const int key, int *x_offset, int *y_offset);
2021-08-17 22:14:09 +02:00
#endif /* _GAME_ENGINE_H */