├── .gitignore ├── CMakeLists.txt ├── Docs ├── HandyArgs - Templatized C++ Command Line Parser Manual (v1.4).html ├── HandyArgs - Templatized C++ Command Line Parser Manual (v1.4)_files │ └── style.css └── HandyMMFile.md ├── Extended ├── GSL │ ├── LICENSE │ └── include │ │ └── gsl │ │ ├── gsl_assert │ │ ├── gsl_byte │ │ ├── gsl_util │ │ └── span ├── HandyArgs.hpp ├── HandyCalamity.hpp ├── HandyPacket.hpp ├── HandySHA1.hpp ├── HandySmallVector.hpp └── stb_image.h ├── Handy.hpp ├── HandyBase.hpp ├── HandyCompat.hpp ├── HandyConsole.hpp ├── HandyDeque.hpp ├── HandyEncoding.hpp ├── HandyExtended.hpp ├── HandyFile.hpp ├── HandyGuid.hpp ├── HandyHash.hpp ├── HandyLoader.hpp ├── HandyMMFile.hpp ├── HandyMath.hpp ├── HandyMemory.hpp ├── HandyPIMPL.hpp ├── HandyRange.hpp ├── HandyResult.hpp ├── HandySerDe.hpp ├── HandyString.hpp ├── HandySystemInfo.hpp ├── HandyThreadUtils.hpp ├── HandyTryGet.hpp ├── HandyUtils.hpp ├── Hints.natvis ├── LICENSE ├── Math ├── Core.hpp ├── Core │ ├── Base.hpp │ ├── BitContinuum.hpp │ ├── Conversions.hpp │ ├── Matrix3.hpp │ ├── Matrix4.hpp │ ├── Popcount.hpp │ ├── RGB888.hpp │ ├── RGBA8888.hpp │ ├── Vector2.hpp │ ├── Vector2d.hpp │ ├── Vector2i.hpp │ ├── Vector3.hpp │ ├── Vector3d.hpp │ ├── Vector3i.hpp │ ├── Vector4.hpp │ ├── Vector4d.hpp │ └── Vector4i.hpp ├── Extended.hpp ├── Extended │ ├── AABB2.hpp │ ├── AABB2d.hpp │ ├── AABB2i.hpp │ ├── AABB3.hpp │ ├── Functions.hpp │ ├── IProjection.hpp │ ├── Line2.hpp │ ├── LineClipping.hpp │ ├── LineSimplification.hpp │ ├── Maps.hpp │ ├── OrthoFrame3.hpp │ ├── OrthoProjection.hpp │ ├── PerspectiveProjection.hpp │ ├── Xform3.hpp │ └── sse_mathfun.h ├── README.md └── Tools │ └── UN_RESHUFFLE.cpp ├── README.md ├── Tests ├── DynamicLibraryLoaderTest │ ├── TestLib │ │ ├── TestLib.cpp │ │ ├── TestLib.hpp │ │ ├── TestLib.vcxproj │ │ └── TestLib.vcxproj.filters │ ├── Tester.sln │ ├── Tester.vcxproj │ ├── Tester.vcxproj.filters │ └── main.cpp ├── MathTests │ ├── Benchmarks.cpp │ ├── Tests.hpp │ ├── TestsInternal.hpp │ └── test_Vector4.cpp └── Ulps.cpp └── src ├── Common.hpp ├── HandyConsole.cpp ├── HandyGuid.cpp ├── HandyLoader.cpp ├── HandyMMFile.cpp ├── HandySystemInfo.cpp ├── HandyThreadUtils.cpp ├── cfgpath.h ├── lz4x.c └── stb_image.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.user 2 | *.vs -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Docs/HandyArgs - Templatized C++ Command Line Parser Manual (v1.4).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Docs/HandyArgs - Templatized C++ Command Line Parser Manual (v1.4).html -------------------------------------------------------------------------------- /Docs/HandyArgs - Templatized C++ Command Line Parser Manual (v1.4)_files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Docs/HandyArgs - Templatized C++ Command Line Parser Manual (v1.4)_files/style.css -------------------------------------------------------------------------------- /Docs/HandyMMFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Docs/HandyMMFile.md -------------------------------------------------------------------------------- /Extended/GSL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/GSL/LICENSE -------------------------------------------------------------------------------- /Extended/GSL/include/gsl/gsl_assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/GSL/include/gsl/gsl_assert -------------------------------------------------------------------------------- /Extended/GSL/include/gsl/gsl_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/GSL/include/gsl/gsl_byte -------------------------------------------------------------------------------- /Extended/GSL/include/gsl/gsl_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/GSL/include/gsl/gsl_util -------------------------------------------------------------------------------- /Extended/GSL/include/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/GSL/include/gsl/span -------------------------------------------------------------------------------- /Extended/HandyArgs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/HandyArgs.hpp -------------------------------------------------------------------------------- /Extended/HandyCalamity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/HandyCalamity.hpp -------------------------------------------------------------------------------- /Extended/HandyPacket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/HandyPacket.hpp -------------------------------------------------------------------------------- /Extended/HandySHA1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/HandySHA1.hpp -------------------------------------------------------------------------------- /Extended/HandySmallVector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/HandySmallVector.hpp -------------------------------------------------------------------------------- /Extended/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Extended/stb_image.h -------------------------------------------------------------------------------- /Handy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Handy.hpp -------------------------------------------------------------------------------- /HandyBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyBase.hpp -------------------------------------------------------------------------------- /HandyCompat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyCompat.hpp -------------------------------------------------------------------------------- /HandyConsole.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyConsole.hpp -------------------------------------------------------------------------------- /HandyDeque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyDeque.hpp -------------------------------------------------------------------------------- /HandyEncoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyEncoding.hpp -------------------------------------------------------------------------------- /HandyExtended.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyExtended.hpp -------------------------------------------------------------------------------- /HandyFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyFile.hpp -------------------------------------------------------------------------------- /HandyGuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyGuid.hpp -------------------------------------------------------------------------------- /HandyHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyHash.hpp -------------------------------------------------------------------------------- /HandyLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyLoader.hpp -------------------------------------------------------------------------------- /HandyMMFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyMMFile.hpp -------------------------------------------------------------------------------- /HandyMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyMath.hpp -------------------------------------------------------------------------------- /HandyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyMemory.hpp -------------------------------------------------------------------------------- /HandyPIMPL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyPIMPL.hpp -------------------------------------------------------------------------------- /HandyRange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyRange.hpp -------------------------------------------------------------------------------- /HandyResult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyResult.hpp -------------------------------------------------------------------------------- /HandySerDe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandySerDe.hpp -------------------------------------------------------------------------------- /HandyString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyString.hpp -------------------------------------------------------------------------------- /HandySystemInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandySystemInfo.hpp -------------------------------------------------------------------------------- /HandyThreadUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyThreadUtils.hpp -------------------------------------------------------------------------------- /HandyTryGet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyTryGet.hpp -------------------------------------------------------------------------------- /HandyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/HandyUtils.hpp -------------------------------------------------------------------------------- /Hints.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Hints.natvis -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/LICENSE -------------------------------------------------------------------------------- /Math/Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core.hpp -------------------------------------------------------------------------------- /Math/Core/Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Base.hpp -------------------------------------------------------------------------------- /Math/Core/BitContinuum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/BitContinuum.hpp -------------------------------------------------------------------------------- /Math/Core/Conversions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Conversions.hpp -------------------------------------------------------------------------------- /Math/Core/Matrix3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Matrix3.hpp -------------------------------------------------------------------------------- /Math/Core/Matrix4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Matrix4.hpp -------------------------------------------------------------------------------- /Math/Core/Popcount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Popcount.hpp -------------------------------------------------------------------------------- /Math/Core/RGB888.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/RGB888.hpp -------------------------------------------------------------------------------- /Math/Core/RGBA8888.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/RGBA8888.hpp -------------------------------------------------------------------------------- /Math/Core/Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Vector2.hpp -------------------------------------------------------------------------------- /Math/Core/Vector2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Vector2d.hpp -------------------------------------------------------------------------------- /Math/Core/Vector2i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Vector2i.hpp -------------------------------------------------------------------------------- /Math/Core/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Vector3.hpp -------------------------------------------------------------------------------- /Math/Core/Vector3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Vector3d.hpp -------------------------------------------------------------------------------- /Math/Core/Vector3i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Vector3i.hpp -------------------------------------------------------------------------------- /Math/Core/Vector4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Vector4.hpp -------------------------------------------------------------------------------- /Math/Core/Vector4d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Vector4d.hpp -------------------------------------------------------------------------------- /Math/Core/Vector4i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Core/Vector4i.hpp -------------------------------------------------------------------------------- /Math/Extended.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended.hpp -------------------------------------------------------------------------------- /Math/Extended/AABB2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/AABB2.hpp -------------------------------------------------------------------------------- /Math/Extended/AABB2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/AABB2d.hpp -------------------------------------------------------------------------------- /Math/Extended/AABB2i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/AABB2i.hpp -------------------------------------------------------------------------------- /Math/Extended/AABB3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/AABB3.hpp -------------------------------------------------------------------------------- /Math/Extended/Functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/Functions.hpp -------------------------------------------------------------------------------- /Math/Extended/IProjection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/IProjection.hpp -------------------------------------------------------------------------------- /Math/Extended/Line2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/Line2.hpp -------------------------------------------------------------------------------- /Math/Extended/LineClipping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/LineClipping.hpp -------------------------------------------------------------------------------- /Math/Extended/LineSimplification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/LineSimplification.hpp -------------------------------------------------------------------------------- /Math/Extended/Maps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/Maps.hpp -------------------------------------------------------------------------------- /Math/Extended/OrthoFrame3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/OrthoFrame3.hpp -------------------------------------------------------------------------------- /Math/Extended/OrthoProjection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/OrthoProjection.hpp -------------------------------------------------------------------------------- /Math/Extended/PerspectiveProjection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/PerspectiveProjection.hpp -------------------------------------------------------------------------------- /Math/Extended/Xform3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/Xform3.hpp -------------------------------------------------------------------------------- /Math/Extended/sse_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Extended/sse_mathfun.h -------------------------------------------------------------------------------- /Math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/README.md -------------------------------------------------------------------------------- /Math/Tools/UN_RESHUFFLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Math/Tools/UN_RESHUFFLE.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/README.md -------------------------------------------------------------------------------- /Tests/DynamicLibraryLoaderTest/TestLib/TestLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/DynamicLibraryLoaderTest/TestLib/TestLib.cpp -------------------------------------------------------------------------------- /Tests/DynamicLibraryLoaderTest/TestLib/TestLib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/DynamicLibraryLoaderTest/TestLib/TestLib.hpp -------------------------------------------------------------------------------- /Tests/DynamicLibraryLoaderTest/TestLib/TestLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/DynamicLibraryLoaderTest/TestLib/TestLib.vcxproj -------------------------------------------------------------------------------- /Tests/DynamicLibraryLoaderTest/TestLib/TestLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/DynamicLibraryLoaderTest/TestLib/TestLib.vcxproj.filters -------------------------------------------------------------------------------- /Tests/DynamicLibraryLoaderTest/Tester.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/DynamicLibraryLoaderTest/Tester.sln -------------------------------------------------------------------------------- /Tests/DynamicLibraryLoaderTest/Tester.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/DynamicLibraryLoaderTest/Tester.vcxproj -------------------------------------------------------------------------------- /Tests/DynamicLibraryLoaderTest/Tester.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/DynamicLibraryLoaderTest/Tester.vcxproj.filters -------------------------------------------------------------------------------- /Tests/DynamicLibraryLoaderTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/DynamicLibraryLoaderTest/main.cpp -------------------------------------------------------------------------------- /Tests/MathTests/Benchmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/MathTests/Benchmarks.cpp -------------------------------------------------------------------------------- /Tests/MathTests/Tests.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/MathTests/Tests.hpp -------------------------------------------------------------------------------- /Tests/MathTests/TestsInternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/MathTests/TestsInternal.hpp -------------------------------------------------------------------------------- /Tests/MathTests/test_Vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/MathTests/test_Vector4.cpp -------------------------------------------------------------------------------- /Tests/Ulps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/Tests/Ulps.cpp -------------------------------------------------------------------------------- /src/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/src/Common.hpp -------------------------------------------------------------------------------- /src/HandyConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/src/HandyConsole.cpp -------------------------------------------------------------------------------- /src/HandyGuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/src/HandyGuid.cpp -------------------------------------------------------------------------------- /src/HandyLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/src/HandyLoader.cpp -------------------------------------------------------------------------------- /src/HandyMMFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/src/HandyMMFile.cpp -------------------------------------------------------------------------------- /src/HandySystemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/src/HandySystemInfo.cpp -------------------------------------------------------------------------------- /src/HandyThreadUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/src/HandyThreadUtils.cpp -------------------------------------------------------------------------------- /src/cfgpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/src/cfgpath.h -------------------------------------------------------------------------------- /src/lz4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malamanteau/handycpp/HEAD/src/lz4x.c -------------------------------------------------------------------------------- /src/stb_image.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define STB_IMAGE_IMPLEMENTATION 3 | #include 4 | --------------------------------------------------------------------------------