- Added basic filesystem method to get the base path of the app

- Added hot reload support of the game dll
- various changes and refactor
This commit is contained in:
2025-02-23 20:37:44 -05:00
parent f83a238473
commit 051939f827
33 changed files with 673 additions and 212 deletions

16
misc/build_game.bat Normal file
View File

@@ -0,0 +1,16 @@
@echo off
del /s ..\Game*.pdb > NUL 2> NUL
pushd %~dp0\..\bin\x64\Debug
echo WAITING FOR PDB > lock.tmp
popd
pushd %~dp0
msbuild -p:Random=%random% /p:SolutionDir=..\ ..\Game\Game.vcxproj
popd
pushd %~dp0\..\bin\x64\Debug
del lock.tmp
popd