eco2d/code/games/sandbox/src/game.c

22 lines
267 B
C
Raw Normal View History

2023-02-02 12:24:16 +00:00
#include "core/game.h"
void game_input() {
game_core_input();
}
void game_update() {
game_core_update();
}
void game_render() {
game_core_render();
}
void game_player_joined(uint64_t ent) {
}
void game_player_departed(uint64_t ent) {
}