├── .gitignore ├── App ├── Build-App.lua └── Source │ └── App.cpp ├── Build.lua ├── Core ├── Build-Core.lua └── Source │ └── Core │ ├── Core.cpp │ └── Core.h ├── README.md ├── Scripts ├── Setup-Linux.sh └── Setup-Windows.bat ├── UNLICENSE.txt └── Vendor └── Binaries └── Premake ├── LICENSE.txt ├── Linux └── premake5 ├── Windows └── premake5.exe └── macOS └── premake5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /App/Build-App.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/App/Build-App.lua -------------------------------------------------------------------------------- /App/Source/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/App/Source/App.cpp -------------------------------------------------------------------------------- /Build.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/Build.lua -------------------------------------------------------------------------------- /Core/Build-Core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/Core/Build-Core.lua -------------------------------------------------------------------------------- /Core/Source/Core/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/Core/Source/Core/Core.cpp -------------------------------------------------------------------------------- /Core/Source/Core/Core.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Core { 4 | 5 | void PrintHelloWorld(); 6 | 7 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Setup-Linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/Scripts/Setup-Linux.sh -------------------------------------------------------------------------------- /Scripts/Setup-Windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/Scripts/Setup-Windows.bat -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /Vendor/Binaries/Premake/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/Vendor/Binaries/Premake/LICENSE.txt -------------------------------------------------------------------------------- /Vendor/Binaries/Premake/Linux/premake5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/Vendor/Binaries/Premake/Linux/premake5 -------------------------------------------------------------------------------- /Vendor/Binaries/Premake/Windows/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/Vendor/Binaries/Premake/Windows/premake5.exe -------------------------------------------------------------------------------- /Vendor/Binaries/Premake/macOS/premake5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheCherno/ProjectTemplate/HEAD/Vendor/Binaries/Premake/macOS/premake5 --------------------------------------------------------------------------------