summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-08-10 21:32:39 -0400
committerJonathan Bradley <jcb@pikum.xyz>2023-08-10 21:32:39 -0400
commitc6e34bea903390b10e40364b56020804dbb0b6b5 (patch)
tree93978e40c9cb718457199c048520f2d658d376ce /src/main.cpp
parent0a62361737652112a3dbace2c0f3f7fa025c4ca2 (diff)
asset manager first pass
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index cf70271..be70826 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2,6 +2,7 @@
#include <cstdio>
#include <exception>
+#include "asset-manager.hpp"
#include "window.hpp"
PKEWindowProperties windowProps{};
@@ -9,6 +10,7 @@ PKEWindowProperties windowProps{};
int main() {
printf("PKE ENTERING\n");
try {
+ AssetManagerInit();
CreateWindow(&windowProps);
} catch (const std::exception &exc) {
printf("EXCEPTION: %s\n", exc.what());