Move through course, sprite and input

Signed-off-by: Daniel Henry <iamdanhenry@gmail.com>
This commit is contained in:
2025-09-05 11:00:14 -05:00
parent c545d800d2
commit b64f931010
342 changed files with 2258 additions and 33 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include <string>
std::string GetResourceDir() {
#ifdef NDEBUG // Release Build
return "assets/";
#else
return "D:/Projects/LightYears/LightYearsGame/assets/";
#endif
}