summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b99aca2..9a4bfda 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -19,7 +19,7 @@ void signal_handler(int signal_num) {
PKEWindowProperties windowProps{};
void Tick(double delta) {
- GameTick(delta);
+ Game_Tick(delta);
}
int main() {
@@ -27,8 +27,8 @@ int main() {
printf("PKE ENTERING\n");
try {
- AssetManagerInit();
- GameInit();
+ AM_Init();
+ Game_Init();
ECS_Init();
CreateWindow(&windowProps);