diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-08-10 21:32:39 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-08-10 21:32:39 -0400 |
| commit | c6e34bea903390b10e40364b56020804dbb0b6b5 (patch) | |
| tree | 93978e40c9cb718457199c048520f2d658d376ce /src/main.cpp | |
| parent | 0a62361737652112a3dbace2c0f3f7fa025c4ca2 (diff) | |
asset manager first pass
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
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()); |
