You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef ENGINE_H |
|
#define ENGINE_H |
|
|
|
#include <stdint.h> |
|
|
|
void engine_init(void); |
|
void engine_update(uint8_t keys, uint8_t prev_keys); |
|
|
|
#endif
|
|
|