├── .gitattributes ├── .gitignore ├── GameGuru Core ├── Dark Basic Public Shared │ ├── Dark Basic Pro SDK │ │ ├── DarkSDK │ │ │ ├── AdvancedMatrix │ │ │ │ ├── AdvancedMatrix.rc │ │ │ │ ├── AdvancedMatrix.vcxproj │ │ │ │ ├── AdvancedMatrix.vcxproj.filters │ │ │ │ └── resource.h │ │ │ ├── Animation │ │ │ │ ├── Animation.rc │ │ │ │ ├── Animation.vcxproj │ │ │ │ ├── Animation.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Animation.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Animation.vcxproj.FileListAbsolute.txt │ │ │ ├── Basic2D │ │ │ │ ├── Basic2D.aps │ │ │ │ ├── Basic2D.rc │ │ │ │ ├── Basic2D.sln │ │ │ │ ├── Basic2D.vcxproj │ │ │ │ ├── Basic2D.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Basic2D.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Basic2D.vcxproj.FileListAbsolute.txt │ │ │ ├── Bitmap │ │ │ │ ├── Bitmap.rc │ │ │ │ ├── Bitmap.sln │ │ │ │ ├── Bitmap.vcxproj │ │ │ │ ├── Bitmap.vcxproj.filters │ │ │ │ ├── cursor1.cur │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Bitmap.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Bitmap.vcxproj.FileListAbsolute.txt │ │ │ ├── Bullet │ │ │ │ ├── Bullet.vcxproj │ │ │ │ ├── Script1.RC │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Bullet.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Bullet.vcxproj.FileListAbsolute.txt │ │ │ ├── Camera │ │ │ │ ├── Camera.rc │ │ │ │ ├── Camera.sln │ │ │ │ ├── Camera.vcxproj │ │ │ │ ├── Camera.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Camera.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Camera.vcxproj.FileListAbsolute.txt │ │ │ ├── Conv3DS │ │ │ │ ├── Conv3DS.vcxproj │ │ │ │ └── Conv3DS.vcxproj.filters │ │ │ ├── ConvX │ │ │ │ ├── ConvX.vcxproj │ │ │ │ ├── ConvX.vcxproj.filters │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── ConvX.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── ConvX.vcxproj.FileListAbsolute.txt │ │ │ ├── Core │ │ │ │ ├── DBDLLCore.rc │ │ │ │ ├── DBDLLCore.vcxproj │ │ │ │ ├── DBDLLCore.vcxproj.filters │ │ │ │ ├── gfx │ │ │ │ │ └── icon.bmp │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── DBDLLCore.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── DBDLLCore.vcxproj.FileListAbsolute.txt │ │ │ ├── FTP │ │ │ │ ├── FTP.rc │ │ │ │ ├── FTP.vcxproj │ │ │ │ ├── FTP.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── FTP.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── FTP.vcxproj.FileListAbsolute.txt │ │ │ ├── File │ │ │ │ ├── File.rc │ │ │ │ ├── File.vcxproj │ │ │ │ ├── File.vcxproj.filters │ │ │ │ ├── FilePlus.rc │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── File.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── File.vcxproj.FileListAbsolute.txt │ │ │ ├── Image │ │ │ │ ├── Image.rc │ │ │ │ ├── Image.vcxproj │ │ │ │ ├── Image.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Image.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Image.vcxproj.FileListAbsolute.txt │ │ │ ├── Input │ │ │ │ ├── Input.rc │ │ │ │ ├── Input.vcxproj │ │ │ │ ├── Input.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Input.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Input.vcxproj.FileListAbsolute.txt │ │ │ ├── Light │ │ │ │ ├── Light.rc │ │ │ │ ├── Light.vcxproj │ │ │ │ ├── Light.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Light.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Light.vcxproj.FileListAbsolute.txt │ │ │ ├── Matrix │ │ │ │ ├── Default.SUP │ │ │ │ ├── Matrix.rc │ │ │ │ ├── Matrix.vcxproj │ │ │ │ ├── Matrix.vcxproj.filters │ │ │ │ └── resource.h │ │ │ ├── Memblocks │ │ │ │ ├── Memblocks.rc │ │ │ │ ├── Memblocks.vcxproj │ │ │ │ ├── Memblocks.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Memblocks.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Memblocks.vcxproj.FileListAbsolute.txt │ │ │ ├── Multiplayer │ │ │ │ ├── Multiplayer.rc │ │ │ │ ├── Multiplayer.vcxproj │ │ │ │ ├── Multiplayer.vcxproj.filters │ │ │ │ └── resource.h │ │ │ ├── MultiplayerPlus │ │ │ │ ├── MultiplayerPlus.vcxproj │ │ │ │ ├── MultiplayerPlus.vcxproj.filters │ │ │ │ ├── Script1.rc │ │ │ │ └── resource.h │ │ │ ├── Music │ │ │ │ ├── Music.rc │ │ │ │ ├── Music.vcxproj │ │ │ │ ├── Music.vcxproj.filters │ │ │ │ └── resource.h │ │ │ ├── Objects │ │ │ │ ├── Objects.rc │ │ │ │ ├── Objects.vcxproj │ │ │ │ ├── Objects.vcxproj.filters │ │ │ │ ├── ObjectsPlus.rc │ │ │ │ ├── icon.bmp │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Objects.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Objects.vcxproj.FileListAbsolute.txt │ │ │ ├── Particles │ │ │ │ ├── Particles.rc │ │ │ │ ├── Particles.vcxproj │ │ │ │ ├── Particles.vcxproj.filters │ │ │ │ └── resource.h │ │ │ ├── Setup │ │ │ │ ├── Setup.rc │ │ │ │ ├── Setup.vcxproj │ │ │ │ ├── Setup.vcxproj.filters │ │ │ │ ├── SetupDEMO.rc │ │ │ │ ├── icon.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── setup.def │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Setup.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Setup.vcxproj.FileListAbsolute.txt │ │ │ ├── Sound │ │ │ │ ├── Sound.rc │ │ │ │ ├── Sound.vcxproj │ │ │ │ ├── Sound.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ ├── vorbis │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── ogg.lib │ │ │ │ │ │ ├── ogg_d.lib │ │ │ │ │ │ ├── ogg_static.lib │ │ │ │ │ │ ├── ogg_static_d.lib │ │ │ │ │ │ ├── vorbis.lib │ │ │ │ │ │ ├── vorbis_d.lib │ │ │ │ │ │ ├── vorbis_static.lib │ │ │ │ │ │ ├── vorbis_static_d.lib │ │ │ │ │ │ ├── vorbisenc.lib │ │ │ │ │ │ ├── vorbisenc_d.lib │ │ │ │ │ │ ├── vorbisenc_static.lib │ │ │ │ │ │ ├── vorbisenc_static_d.lib │ │ │ │ │ │ ├── vorbisfile.lib │ │ │ │ │ │ ├── vorbisfile_d.lib │ │ │ │ │ │ ├── vorbisfile_static.lib │ │ │ │ │ │ └── vorbisfile_static_d.lib │ │ │ │ │ ├── ogg │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ └── vorbisfile.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Sound.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Sound.vcxproj.FileListAbsolute.txt │ │ │ ├── Sprites │ │ │ │ ├── Sprites.rc │ │ │ │ ├── Sprites.vcxproj │ │ │ │ ├── Sprites.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Sprites.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Sprites.vcxproj.FileListAbsolute.txt │ │ │ ├── System │ │ │ │ ├── System.rc │ │ │ │ ├── System.vcxproj │ │ │ │ ├── System.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── System.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── System.vcxproj.FileListAbsolute.txt │ │ │ ├── Text │ │ │ │ ├── Text.aps │ │ │ │ ├── Text.rc │ │ │ │ ├── Text.vcxproj │ │ │ │ ├── Text.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── Text.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── Text.vcxproj.FileListAbsolute.txt │ │ │ ├── Transforms │ │ │ │ ├── Transforms.rc │ │ │ │ ├── Transforms.vcxproj │ │ │ │ └── Transforms.vcxproj.filters │ │ │ └── Vectors │ │ │ │ ├── Vectors.rc │ │ │ │ ├── Vectors.vcxproj │ │ │ │ ├── Vectors.vcxproj.filters │ │ │ │ ├── resource.h │ │ │ │ └── x64 │ │ │ │ ├── Debug │ │ │ │ └── Vectors.vcxproj.FileListAbsolute.txt │ │ │ │ └── Release │ │ │ │ └── Vectors.vcxproj.FileListAbsolute.txt │ │ ├── DarkSDKMore │ │ │ ├── BlitzTerrain │ │ │ │ ├── BlitzTerrain.vcxproj │ │ │ │ ├── BlitzTerrain.vcxproj.filters │ │ │ │ ├── CreateObject.cpp │ │ │ │ ├── CreateObject.h │ │ │ │ ├── EnvironmentMapping.cpp │ │ │ │ ├── EnvironmentMapping.h │ │ │ │ ├── FileIO.cpp │ │ │ │ ├── FileIO.h │ │ │ │ ├── FileIO100.cpp │ │ │ │ ├── FileIO101.cpp │ │ │ │ ├── Resource.rc │ │ │ │ ├── code-from-dbp.cpp │ │ │ │ ├── code-from-dbp.h │ │ │ │ ├── main.cpp │ │ │ │ ├── main.h │ │ │ │ ├── quadmapping.cpp │ │ │ │ ├── quadmapping.h │ │ │ │ ├── resource.h │ │ │ │ ├── rttms.cpp │ │ │ │ ├── rttms.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── BlitzTerrain.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── BlitzTerrain.vcxproj.FileListAbsolute.txt │ │ │ ├── BlitzTerrain_RTTMSPlugin │ │ │ │ ├── BlitzTerrain_RTTMSPlugin.vcxproj │ │ │ │ ├── BlitzTerrain_RTTMSPlugin.vcxproj.filters │ │ │ │ ├── brush.cpp │ │ │ │ ├── brush.h │ │ │ │ ├── main.cpp │ │ │ │ ├── main.h │ │ │ │ ├── paint.cpp │ │ │ │ ├── paint.h │ │ │ │ ├── resource.h │ │ │ │ ├── resource.rc │ │ │ │ ├── wholeterrain.cpp │ │ │ │ ├── wholeterrain.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── BlitzTerrain_RTTMSPlugin.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── BlitzTerrain_RTTMSPlugin.vcxproj.FileListAbsolute.txt │ │ │ ├── CPU3D │ │ │ │ ├── CPU3D.cpp │ │ │ │ ├── CPU3D.h │ │ │ │ ├── CPU3DTest.vcxproj │ │ │ │ ├── CPU3DTest.vcxproj.filters │ │ │ │ ├── CPU3DTypes.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Resource.rc │ │ │ │ ├── SoftwareCulling.cpp │ │ │ │ ├── cThread.cpp │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── CPU3DTest.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ ├── CPU3DTest.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── RCa19220 │ │ │ ├── DarkAI │ │ │ │ ├── 3DEngine.H │ │ │ │ ├── AIThread.cpp │ │ │ │ ├── AIThread.h │ │ │ │ ├── Beacon.cpp │ │ │ │ ├── Beacon.h │ │ │ │ ├── Box.h │ │ │ │ ├── CollisionObject.h │ │ │ │ ├── CollisionTree.cpp │ │ │ │ ├── CollisionTree.h │ │ │ │ ├── Container.cpp │ │ │ │ ├── Container.h │ │ │ │ ├── DBOData10.cpp │ │ │ │ ├── DBOData10.h │ │ │ │ ├── DBOData9.cpp │ │ │ │ ├── DBOData9.h │ │ │ │ ├── DBOData9_old.h │ │ │ │ ├── DBPro Functions.cpp │ │ │ │ ├── DBPro Functions.h │ │ │ │ ├── DarkAI.cpp │ │ │ │ ├── DarkMind.vcxproj │ │ │ │ ├── DarkMind.vcxproj.filters │ │ │ │ ├── Docs │ │ │ │ │ └── DarkAI 1.04.chm │ │ │ │ ├── DynamicPathFinder.cpp │ │ │ │ ├── DynamicPathFinder.h │ │ │ │ ├── Entity.cpp │ │ │ │ ├── Entity.h │ │ │ │ ├── EntityBuffer.cpp │ │ │ │ ├── EntityBuffer.h │ │ │ │ ├── EntityThread.cpp │ │ │ │ ├── EntityThread.h │ │ │ │ ├── Grid.cpp │ │ │ │ ├── Grid.h │ │ │ │ ├── Hero.cpp │ │ │ │ ├── Hero.h │ │ │ │ ├── LUAScript.cpp │ │ │ │ ├── LUAScript.h │ │ │ │ ├── LeeThread.cpp │ │ │ │ ├── LeeThread.h │ │ │ │ ├── Path.cpp │ │ │ │ ├── Path.h │ │ │ │ ├── PathFinderAdvanced.cpp │ │ │ │ ├── PathFinderAdvanced.h │ │ │ │ ├── Point.h │ │ │ │ ├── Polygon.cpp │ │ │ │ ├── Polygon.h │ │ │ │ ├── StateMachine │ │ │ │ │ ├── StateAttack.cpp │ │ │ │ │ ├── StateAttackFromCover.cpp │ │ │ │ │ ├── StateChaseAttack.cpp │ │ │ │ │ ├── StateDefend.cpp │ │ │ │ │ ├── StateDiving.cpp │ │ │ │ │ ├── StateFallBack.cpp │ │ │ │ │ ├── StateGoToDest.cpp │ │ │ │ │ ├── StateIdle.cpp │ │ │ │ │ ├── StateInvestigate.cpp │ │ │ │ │ ├── StateLeaping.cpp │ │ │ │ │ ├── StateManual.cpp │ │ │ │ │ ├── StatePatrol.cpp │ │ │ │ │ ├── StatePeekFromCorner.cpp │ │ │ │ │ ├── StateSearchArea.cpp │ │ │ │ │ ├── StateSet.cpp │ │ │ │ │ ├── StateSet.h │ │ │ │ │ ├── StateStrafeAttack.cpp │ │ │ │ │ └── StateWaitInCover.cpp │ │ │ │ ├── Team.cpp │ │ │ │ ├── Team.h │ │ │ │ ├── TeamController.cpp │ │ │ │ ├── TeamController.h │ │ │ │ ├── Thread.h │ │ │ │ ├── TreeFace.cpp │ │ │ │ ├── TreeFace.h │ │ │ │ ├── TreeNode.cpp │ │ │ │ ├── TreeNode.h │ │ │ │ ├── Vector.h │ │ │ │ ├── World.cpp │ │ │ │ ├── World.h │ │ │ │ ├── Zone.cpp │ │ │ │ ├── Zone.h │ │ │ │ ├── resource.h │ │ │ │ ├── stringtable.rc │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── DarkMind.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ ├── DarkMind.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── RCa10572 │ │ │ ├── DarkLIGHTS │ │ │ │ ├── Box.h │ │ │ │ ├── ColObject.h │ │ │ │ ├── CollisionTreeLightmapper.cpp │ │ │ │ ├── CollisionTreeLightmapper.h │ │ │ │ ├── DBPro Functions.h │ │ │ │ ├── GlobalOLD.h │ │ │ │ ├── LMGlobal.cpp │ │ │ │ ├── LMGlobal.h │ │ │ │ ├── LMObject.cpp │ │ │ │ ├── LMObject.h │ │ │ │ ├── LMPoly.cpp │ │ │ │ ├── LMPoly.h │ │ │ │ ├── LMPolyGroup.cpp │ │ │ │ ├── LMPolyGroup.h │ │ │ │ ├── LMTexNode.cpp │ │ │ │ ├── LMTexNode.h │ │ │ │ ├── LMTexture.cpp │ │ │ │ ├── LMTexture.h │ │ │ │ ├── Light.cpp │ │ │ │ ├── Light.h │ │ │ │ ├── LightMapper.cpp │ │ │ │ ├── LightMapper.rc │ │ │ │ ├── LightMapper.vcxproj │ │ │ │ ├── LightMapper.vcxproj.filters │ │ │ │ ├── LightMapperThread.h │ │ │ │ ├── Lumel.cpp │ │ │ │ ├── Lumel.h │ │ │ │ ├── Point.h │ │ │ │ ├── SharedData.cpp │ │ │ │ ├── SharedData.h │ │ │ │ ├── Thread.h │ │ │ │ ├── TreeFaceLightmapper.cpp │ │ │ │ ├── TreeFaceLightmapper.h │ │ │ │ ├── Vector.h │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── LightMapper.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── LightMapper.vcxproj.FileListAbsolute.txt │ │ │ ├── DarkLUA │ │ │ │ ├── DarkLUA.cpp │ │ │ │ ├── DarkLUA.rc │ │ │ │ ├── DarkLUA.vcxproj │ │ │ │ ├── DarkLUA.vcxproj.filters │ │ │ │ ├── Docs │ │ │ │ │ └── DarkLua.pdf │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── lua │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── lapi.c │ │ │ │ │ ├── lapi.h │ │ │ │ │ ├── lauxlib.c │ │ │ │ │ ├── lauxlib.h │ │ │ │ │ ├── lbaselib.c │ │ │ │ │ ├── lbitlib.c │ │ │ │ │ ├── lcode.c │ │ │ │ │ ├── lcode.h │ │ │ │ │ ├── lcorolib.c │ │ │ │ │ ├── lctype.c │ │ │ │ │ ├── lctype.h │ │ │ │ │ ├── ldblib.c │ │ │ │ │ ├── ldebug.c │ │ │ │ │ ├── ldebug.h │ │ │ │ │ ├── ldo.c │ │ │ │ │ ├── ldo.h │ │ │ │ │ ├── ldump.c │ │ │ │ │ ├── lfunc.c │ │ │ │ │ ├── lfunc.h │ │ │ │ │ ├── lgc.c │ │ │ │ │ ├── lgc.h │ │ │ │ │ ├── linit.c │ │ │ │ │ ├── liolib.c │ │ │ │ │ ├── llex.c │ │ │ │ │ ├── llex.h │ │ │ │ │ ├── llimits.h │ │ │ │ │ ├── lmathlib.c │ │ │ │ │ ├── lmem.c │ │ │ │ │ ├── lmem.h │ │ │ │ │ ├── loadlib.c │ │ │ │ │ ├── lobject.c │ │ │ │ │ ├── lobject.h │ │ │ │ │ ├── lopcodes.c │ │ │ │ │ ├── lopcodes.h │ │ │ │ │ ├── loslib.c │ │ │ │ │ ├── lparser.c │ │ │ │ │ ├── lparser.h │ │ │ │ │ ├── lstate.c │ │ │ │ │ ├── lstate.h │ │ │ │ │ ├── lstring.c │ │ │ │ │ ├── lstring.h │ │ │ │ │ ├── lstrlib.c │ │ │ │ │ ├── ltable.c │ │ │ │ │ ├── ltable.h │ │ │ │ │ ├── ltablib.c │ │ │ │ │ ├── ltm.c │ │ │ │ │ ├── ltm.h │ │ │ │ │ ├── lua.c │ │ │ │ │ ├── lua.h │ │ │ │ │ ├── lua.hpp │ │ │ │ │ ├── luac.c │ │ │ │ │ ├── luaconf.h │ │ │ │ │ ├── lualib.h │ │ │ │ │ ├── lundump.c │ │ │ │ │ ├── lundump.h │ │ │ │ │ ├── lvm.c │ │ │ │ │ ├── lvm.h │ │ │ │ │ ├── lzio.c │ │ │ │ │ └── lzio.h │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── DarkLUA.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ ├── DarkLUA.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── RCa19084 │ │ │ ├── Enhancements │ │ │ │ ├── Core.cpp │ │ │ │ ├── Core.h │ │ │ │ ├── CpuUsage.cpp │ │ │ │ ├── CpuUsage.h │ │ │ │ ├── Data.cpp │ │ │ │ ├── Data.h │ │ │ │ ├── EAX.cpp │ │ │ │ ├── EaxMan.h │ │ │ │ ├── EaxMan.lib │ │ │ │ ├── FileBlocks.cpp │ │ │ │ ├── FileBlocksBlowfish.cpp │ │ │ │ ├── FileBlocksBlowfish.h │ │ │ │ ├── FileBlocksData.h │ │ │ │ ├── FileMapping.cpp │ │ │ │ ├── IPC.cpp │ │ │ │ ├── IPC.h │ │ │ │ ├── Main.vcxproj │ │ │ │ ├── Main.vcxproj.filters │ │ │ │ ├── OSComputerNames.cpp │ │ │ │ ├── OSCpu.cpp │ │ │ │ ├── OSCpuInfo.cpp │ │ │ │ ├── OSCpuInfo.h │ │ │ │ ├── OSDialog.cpp │ │ │ │ ├── OSDisplay.cpp │ │ │ │ ├── OSHardDrive.cpp │ │ │ │ ├── OSInternet.cpp │ │ │ │ ├── OSMemory.cpp │ │ │ │ ├── OSSpeech.cpp │ │ │ │ ├── OggVorbis.cpp │ │ │ │ ├── PerfCounters.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── Zip.lib │ │ │ │ ├── ZipArchive.lib │ │ │ │ ├── ZipArchiveD.lib │ │ │ │ ├── Zlib │ │ │ │ │ ├── adler32.c │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_via_ace.h │ │ │ │ │ ├── aescrypt.c │ │ │ │ │ ├── aeskey.c │ │ │ │ │ ├── aesopt.h │ │ │ │ │ ├── aestab.c │ │ │ │ │ ├── aestab.h │ │ │ │ │ ├── brg_endian.h │ │ │ │ │ ├── brg_types.h │ │ │ │ │ ├── cZip.cpp │ │ │ │ │ ├── cZip.h │ │ │ │ │ ├── compress.c │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── crypt.h │ │ │ │ │ ├── deflate.c │ │ │ │ │ ├── deflate.h │ │ │ │ │ ├── entropy.c │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── fileenc.c │ │ │ │ │ ├── fileenc.h │ │ │ │ │ ├── gzclose.c │ │ │ │ │ ├── gzguts.h │ │ │ │ │ ├── gzlib.c │ │ │ │ │ ├── gzread.c │ │ │ │ │ ├── gzwrite.c │ │ │ │ │ ├── hmac.c │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── infback.c │ │ │ │ │ ├── inffast.c │ │ │ │ │ ├── inffast.h │ │ │ │ │ ├── inffixed.h │ │ │ │ │ ├── inflate.c │ │ │ │ │ ├── inflate.h │ │ │ │ │ ├── inftrees.c │ │ │ │ │ ├── inftrees.h │ │ │ │ │ ├── ioapi.c │ │ │ │ │ ├── ioapi.h │ │ │ │ │ ├── ioapi_buf.c │ │ │ │ │ ├── ioapi_buf.h │ │ │ │ │ ├── ioapi_mem.c │ │ │ │ │ ├── ioapi_mem.h │ │ │ │ │ ├── iowin32.c │ │ │ │ │ ├── iowin32.h │ │ │ │ │ ├── prng.c │ │ │ │ │ ├── prng.h │ │ │ │ │ ├── pwd2key.c │ │ │ │ │ ├── pwd2key.h │ │ │ │ │ ├── sha1.c │ │ │ │ │ ├── sha1.h │ │ │ │ │ ├── trees.c │ │ │ │ │ ├── trees.h │ │ │ │ │ ├── uncompr.c │ │ │ │ │ ├── unzip.c │ │ │ │ │ ├── unzip.h │ │ │ │ │ ├── zconf.h │ │ │ │ │ ├── zip.c │ │ │ │ │ ├── zip.h │ │ │ │ │ ├── zlib.h │ │ │ │ │ ├── zutil.c │ │ │ │ │ └── zutil.h │ │ │ │ ├── commands.rc │ │ │ │ ├── ogg vorbis │ │ │ │ │ ├── Core.cpp │ │ │ │ │ ├── Core.h │ │ │ │ │ ├── Ogg Vorbis.sln │ │ │ │ │ ├── Ogg Vorbis.vcxproj │ │ │ │ │ ├── Ogg Vorbis.vcxproj.filters │ │ │ │ │ ├── OggVorbis.cpp │ │ │ │ │ ├── OggVorbis.dll │ │ │ │ │ ├── OggVorbisEncoderAudio.cpp │ │ │ │ │ ├── OggVorbisEncoderAudio.h │ │ │ │ │ ├── OggVorbisEncoderEncode.cpp │ │ │ │ │ ├── OggVorbisEncoderEncode.h │ │ │ │ │ ├── OggVorbisEncoderMain.cpp │ │ │ │ │ ├── OggVorbisEncoderPlatform.cpp │ │ │ │ │ ├── OggVorbisEncoderPlatform.h │ │ │ │ │ ├── SDK │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── ogg │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── config_types.h.in │ │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ │ └── vorbis │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ ├── libogg-1.3.0 │ │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ │ ├── bitwise.c │ │ │ │ │ │ │ └── framing.c │ │ │ │ │ │ └── libvorbis-1.3.3 │ │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── analysis.c │ │ │ │ │ │ │ ├── backends.h │ │ │ │ │ │ │ ├── barkmel.c │ │ │ │ │ │ │ ├── bitrate.c │ │ │ │ │ │ │ ├── bitrate.h │ │ │ │ │ │ │ ├── block.c │ │ │ │ │ │ │ ├── books │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── coupled │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ │ │ │ └── res_books_stereo.h │ │ │ │ │ │ │ ├── floor │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ └── floor_books.h │ │ │ │ │ │ │ └── uncoupled │ │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ │ └── res_books_uncoupled.h │ │ │ │ │ │ │ ├── codebook.c │ │ │ │ │ │ │ ├── codebook.h │ │ │ │ │ │ │ ├── codec_internal.h │ │ │ │ │ │ │ ├── envelope.c │ │ │ │ │ │ │ ├── envelope.h │ │ │ │ │ │ │ ├── floor0.c │ │ │ │ │ │ │ ├── floor1.c │ │ │ │ │ │ │ ├── highlevel.h │ │ │ │ │ │ │ ├── info.c │ │ │ │ │ │ │ ├── lookup.c │ │ │ │ │ │ │ ├── lookup.h │ │ │ │ │ │ │ ├── lookup_data.h │ │ │ │ │ │ │ ├── lookups.pl │ │ │ │ │ │ │ ├── lpc.c │ │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ │ ├── lsp.c │ │ │ │ │ │ │ ├── lsp.h │ │ │ │ │ │ │ ├── mapping0.c │ │ │ │ │ │ │ ├── masking.h │ │ │ │ │ │ │ ├── mdct.c │ │ │ │ │ │ │ ├── mdct.h │ │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ │ ├── modes │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ │ ├── floor_all.h │ │ │ │ │ │ │ ├── psych_11.h │ │ │ │ │ │ │ ├── psych_16.h │ │ │ │ │ │ │ ├── psych_44.h │ │ │ │ │ │ │ ├── psych_8.h │ │ │ │ │ │ │ ├── residue_16.h │ │ │ │ │ │ │ ├── residue_44.h │ │ │ │ │ │ │ ├── residue_44p51.h │ │ │ │ │ │ │ ├── residue_44u.h │ │ │ │ │ │ │ ├── residue_8.h │ │ │ │ │ │ │ ├── setup_11.h │ │ │ │ │ │ │ ├── setup_16.h │ │ │ │ │ │ │ ├── setup_22.h │ │ │ │ │ │ │ ├── setup_32.h │ │ │ │ │ │ │ ├── setup_44.h │ │ │ │ │ │ │ ├── setup_44p51.h │ │ │ │ │ │ │ ├── setup_44u.h │ │ │ │ │ │ │ ├── setup_8.h │ │ │ │ │ │ │ └── setup_X.h │ │ │ │ │ │ │ ├── os.h │ │ │ │ │ │ │ ├── psy.c │ │ │ │ │ │ │ ├── psy.h │ │ │ │ │ │ │ ├── psytune.c │ │ │ │ │ │ │ ├── registry.c │ │ │ │ │ │ │ ├── registry.h │ │ │ │ │ │ │ ├── res0.c │ │ │ │ │ │ │ ├── scales.h │ │ │ │ │ │ │ ├── sharedbook.c │ │ │ │ │ │ │ ├── smallft.c │ │ │ │ │ │ │ ├── smallft.h │ │ │ │ │ │ │ ├── synthesis.c │ │ │ │ │ │ │ ├── tone.c │ │ │ │ │ │ │ ├── vorbisenc.c │ │ │ │ │ │ │ ├── vorbisfile.c │ │ │ │ │ │ │ ├── window.c │ │ │ │ │ │ │ └── window.h │ │ │ │ │ ├── commands.rc │ │ │ │ │ ├── resource.h │ │ │ │ │ └── vorbis │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── ogg.lib │ │ │ │ │ │ ├── ogg_d.lib │ │ │ │ │ │ ├── ogg_static.lib │ │ │ │ │ │ ├── ogg_static_d.lib │ │ │ │ │ │ ├── vorbis.lib │ │ │ │ │ │ ├── vorbis_d.lib │ │ │ │ │ │ ├── vorbis_static.lib │ │ │ │ │ │ ├── vorbis_static_d.lib │ │ │ │ │ │ ├── vorbisenc.lib │ │ │ │ │ │ ├── vorbisenc_d.lib │ │ │ │ │ │ ├── vorbisenc_static.lib │ │ │ │ │ │ ├── vorbisenc_static_d.lib │ │ │ │ │ │ ├── vorbisfile.lib │ │ │ │ │ │ ├── vorbisfile_d.lib │ │ │ │ │ │ ├── vorbisfile_static.lib │ │ │ │ │ │ └── vorbisfile_static_d.lib │ │ │ │ │ │ ├── ogg │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ ├── resource.h │ │ │ │ ├── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── Main.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ │ ├── Main.vcxproj.FileListAbsolute.txt │ │ │ │ │ │ └── RCa10044 │ │ │ │ └── zip │ │ │ │ │ ├── UpgradeLog.htm │ │ │ │ │ ├── ZipArchive.vcxproj │ │ │ │ │ └── ZipArchive.vcxproj.filters │ │ │ ├── GGVR │ │ │ │ ├── GGVR.cpp │ │ │ │ ├── GGVR.sln │ │ │ │ ├── GGVR.vcxproj │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ └── openvr_api.dll │ │ │ ├── GGWMR │ │ │ │ ├── AppMain.cpp │ │ │ │ ├── AppMain.h │ │ │ │ ├── BasicHologramMain.cpp │ │ │ │ ├── BasicHologramMain.h │ │ │ │ ├── Common │ │ │ │ │ ├── CameraResources.cpp │ │ │ │ │ ├── CameraResources.h │ │ │ │ │ ├── DeviceResources.cpp │ │ │ │ │ ├── DeviceResources.h │ │ │ │ │ ├── DirectXHelper.h │ │ │ │ │ └── StepTimer.h │ │ │ │ ├── Content │ │ │ │ │ ├── GeometryShader.hlsl │ │ │ │ │ ├── PixelShader.hlsl │ │ │ │ │ ├── VPRTVertexShader.hlsl │ │ │ │ │ ├── VertexShader.hlsl │ │ │ │ │ └── VertexShaderShared.hlsl │ │ │ │ ├── GGWMR.cpp │ │ │ │ ├── GGWMR.sln │ │ │ │ ├── GGWMR.vcxproj │ │ │ │ ├── GGWMR.vcxproj.filters │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── StdAfx_OLD.cpp │ │ │ │ ├── StdAfx_OLD.h │ │ │ │ └── StepTimer_OLD.h │ │ │ ├── GameFX │ │ │ │ ├── GameFX.rc │ │ │ │ ├── GameFX.vcxproj │ │ │ │ └── resource.h │ │ │ ├── PhotonMultiplayer │ │ │ │ ├── CClient.cpp │ │ │ │ ├── CClient.h │ │ │ │ ├── CPlayer.h │ │ │ │ ├── CServer.cpp │ │ │ │ ├── CServer.h │ │ │ │ ├── LoadBalancingListener.cpp │ │ │ │ ├── LoadBalancingListener.h │ │ │ │ ├── Lobby.cpp │ │ │ │ ├── Lobby.h │ │ │ │ ├── MPAudio.cpp │ │ │ │ ├── MPAudio.h │ │ │ │ ├── Messages.h │ │ │ │ ├── PhotonMultiplayer.aps │ │ │ │ ├── PhotonMultiplayer.cpp │ │ │ │ ├── PhotonMultiplayer.h │ │ │ │ ├── PhotonMultiplayer.rc │ │ │ │ ├── PhotonMultiplayer.vcxproj │ │ │ │ ├── PhotonMultiplayer.vcxproj.filters │ │ │ │ ├── PhotonView.cpp │ │ │ │ ├── PhotonView.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── ServerBrowser.cpp │ │ │ │ ├── ServerBrowser.h │ │ │ │ ├── ShouldISend.cpp │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── p2pauth.cpp │ │ │ │ ├── p2pauth.h │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ ├── timer.cpp │ │ │ │ ├── timer.h │ │ │ │ ├── voicechat.cpp │ │ │ │ ├── voicechat.h │ │ │ │ └── xaudio new.h │ │ │ ├── SimonCSG │ │ │ │ ├── SimonCSG.cpp │ │ │ │ ├── SimonCSG.rc │ │ │ │ ├── SimonCSG.vcxproj │ │ │ │ ├── SimonCSG.vcxproj.filters │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── SimonReloaded │ │ │ │ ├── SimonReloaded.cpp │ │ │ │ ├── SimonReloaded.rc │ │ │ │ ├── SimonReloaded.vcxproj │ │ │ │ ├── SimonReloaded.vcxproj.filters │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── SimonReloaded.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ ├── RCa12876 │ │ │ │ │ └── SimonReloaded.vcxproj.FileListAbsolute.txt │ │ │ └── SteamMultiplayer │ │ │ │ ├── CClient.cpp │ │ │ │ ├── CClient.h │ │ │ │ ├── CPlayer.h │ │ │ │ ├── CSteamServer.cpp │ │ │ │ ├── CSteamServer.h │ │ │ │ ├── Leaderboards.cpp │ │ │ │ ├── Leaderboards.h │ │ │ │ ├── Lobby.cpp │ │ │ │ ├── Lobby.h │ │ │ │ ├── MPAudio.cpp │ │ │ │ ├── MPAudio.h │ │ │ │ ├── Messages.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── RemoteStorage.cpp │ │ │ │ ├── RemoteStorage.h │ │ │ │ ├── ServerBrowser.cpp │ │ │ │ ├── ServerBrowser.h │ │ │ │ ├── ShouldISend.cpp │ │ │ │ ├── StatsAndAchievements.cpp │ │ │ │ ├── StatsAndAchievements.h │ │ │ │ ├── SteamMultiplayer.cpp │ │ │ │ ├── SteamMultiplayer.h │ │ │ │ ├── SteamMultiplayer.rc │ │ │ │ ├── SteamMultiplayer.vcxproj │ │ │ │ ├── SteamMultiplayer.vcxproj.filters │ │ │ │ ├── dllmain.cpp │ │ │ │ ├── p2pauth.cpp │ │ │ │ ├── p2pauth.h │ │ │ │ ├── remotestoragesync.cpp │ │ │ │ ├── remotestoragesync.h │ │ │ │ ├── resource.h │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ ├── targetver.h │ │ │ │ ├── timer.cpp │ │ │ │ ├── timer.h │ │ │ │ ├── voicechat.cpp │ │ │ │ ├── voicechat.h │ │ │ │ ├── x64 │ │ │ │ ├── Debug │ │ │ │ │ └── SteamMultiplayer.vcxproj.FileListAbsolute.txt │ │ │ │ └── Release │ │ │ │ │ └── SteamMultiplayer.vcxproj.FileListAbsolute.txt │ │ │ │ └── xaudio new.h │ │ └── Shared │ │ │ ├── Animation │ │ │ ├── CAnimation.cpp │ │ │ ├── ImageSupport.h │ │ │ └── qedit.h │ │ │ ├── BaseClasses │ │ │ ├── STRMBASE.lib │ │ │ ├── amextra.h │ │ │ ├── amfilter.h │ │ │ ├── cache.h │ │ │ ├── combase.h │ │ │ ├── cprop.h │ │ │ ├── ctlutil.h │ │ │ ├── ddmm.h │ │ │ ├── dllsetup.h │ │ │ ├── dsschedule.h │ │ │ ├── fourcc.h │ │ │ ├── measure.h │ │ │ ├── msgthrd.h │ │ │ ├── mtype.h │ │ │ ├── outputq.h │ │ │ ├── pstream.h │ │ │ ├── pullpin.h │ │ │ ├── refclock.h │ │ │ ├── reftime.h │ │ │ ├── renbase.h │ │ │ ├── seekpt.h │ │ │ ├── source.h │ │ │ ├── streams.h │ │ │ ├── strmbasd.lib │ │ │ ├── strmctl.h │ │ │ ├── sysclock.h │ │ │ ├── transfrm.h │ │ │ ├── transip.h │ │ │ ├── videoctl.h │ │ │ ├── vtrans.h │ │ │ ├── winctrl.h │ │ │ ├── winutil.h │ │ │ ├── wxdebug.h │ │ │ ├── wxlist.h │ │ │ └── wxutil.h │ │ │ ├── Basic2D │ │ │ └── CBasic2DC.cpp │ │ │ ├── Bitmap │ │ │ └── CBitmapC.cpp │ │ │ ├── Bullet │ │ │ ├── BulletPhysics.CPP │ │ │ ├── CharacterDemo.cpp │ │ │ ├── CharacterDemo.h │ │ │ ├── DynamicCharacterController.cpp │ │ │ ├── DynamicCharacterController.h │ │ │ ├── HelloWorld.cpp │ │ │ ├── Ragdoll │ │ │ │ ├── BT2DX.cpp │ │ │ │ ├── BT2DX.h │ │ │ │ ├── BaseItem.cpp │ │ │ │ ├── BaseItem.h │ │ │ │ ├── BaseItemManager.cpp │ │ │ │ ├── BaseItemManager.h │ │ │ │ ├── DBPro │ │ │ │ │ └── include │ │ │ │ │ │ ├── DBPro.cpp │ │ │ │ │ │ ├── DBPro.hpp │ │ │ │ │ │ └── DBProTypes.hpp │ │ │ │ ├── DBProJoint.cpp │ │ │ │ ├── DBProJoint.h │ │ │ │ ├── DBProJointManager.cpp │ │ │ │ ├── DBProJointManager.h │ │ │ │ ├── DBProJoints.cpp │ │ │ │ ├── DBProJoints.h │ │ │ │ ├── DBProMotionState.cpp │ │ │ │ ├── DBProMotionState.h │ │ │ │ ├── DBProRagDoll.cpp │ │ │ │ ├── DBProRagDoll.h │ │ │ │ ├── DBProRagDollBone.cpp │ │ │ │ ├── DBProRagDollBone.h │ │ │ │ ├── DBProRagdollManager.cpp │ │ │ │ ├── DBProRagdollManager.h │ │ │ │ ├── DBProToBullet.cpp │ │ │ │ └── DBProToBullet.h │ │ │ └── main.cpp │ │ │ ├── CSG │ │ │ ├── BSPTree.cpp │ │ │ ├── BSPTree.h │ │ │ ├── CDataC.cpp │ │ │ ├── CDataC.h │ │ │ ├── CEnhancedXC.cpp │ │ │ ├── CEnhancedXC.h │ │ │ ├── CError.cpp │ │ │ ├── CError.h │ │ │ ├── CSG.h │ │ │ ├── cAnimation.cpp │ │ │ ├── cAnimation.h │ │ │ ├── main.cpp │ │ │ ├── sAnimation.cpp │ │ │ ├── sAnimation.h │ │ │ ├── sAnimationSet.cpp │ │ │ ├── sAnimationSet.h │ │ │ ├── sFrame.cpp │ │ │ ├── sFrame.h │ │ │ ├── sMesh.cpp │ │ │ ├── sMesh.h │ │ │ └── xmain.cpp │ │ │ ├── Camera │ │ │ ├── CCamera.cpp │ │ │ ├── CCamera.h │ │ │ ├── CCameraC.cpp │ │ │ ├── CCameraData.h │ │ │ ├── CCameraDataC.cpp │ │ │ ├── CCameraDataC.h │ │ │ ├── CCameraManager.cpp │ │ │ ├── CCameraManager.h │ │ │ ├── CCameraManagerC.cpp │ │ │ ├── CCameraManagerC.h │ │ │ ├── DBCameraGraphics.cpp │ │ │ ├── Stereoscopics.cpp │ │ │ ├── Stereoscopics.h │ │ │ ├── TextureBackdrop.cpp │ │ │ └── TextureBackdrop.h │ │ │ ├── Conv3DS │ │ │ ├── Conv3DS.cpp │ │ │ ├── d3dmath.cpp │ │ │ └── d3dmath.h │ │ │ ├── ConvX │ │ │ └── ConvX.cpp │ │ │ ├── Core │ │ │ ├── DBDLLArray.h │ │ │ ├── DBDLLCore.cpp │ │ │ ├── DBDLLCore.h │ │ │ ├── DBDLLCoreEncryptCall.cpp │ │ │ ├── DBDLLCoreInternal.cpp │ │ │ ├── DBDLLCoreInternal.h │ │ │ ├── DBDLLDisplay.cpp │ │ │ ├── DBDLLDisplay.h │ │ │ ├── DBDLLEXT.cpp │ │ │ ├── DBDLLEXT.h │ │ │ ├── DBDLLExtCalls.cpp │ │ │ ├── DBDLLExtCalls.h │ │ │ ├── DBDLLGDI.cpp │ │ │ ├── DBDLLGDI.h │ │ │ ├── KMaths │ │ │ │ ├── cMatrix.cpp │ │ │ │ ├── cVector2D.cpp │ │ │ │ ├── cVector2D.h │ │ │ │ ├── cVector3D.cpp │ │ │ │ └── cVector4D.cpp │ │ │ ├── RenderList.cpp │ │ │ ├── RenderList.h │ │ │ ├── SteamCheckForWorkshop.cpp │ │ │ ├── SteamCheckForWorkshop.h │ │ │ ├── globstruct.cpp │ │ │ └── macros.h │ │ │ ├── DBOFormat │ │ │ ├── DBO2X.cpp │ │ │ ├── DBOAssImp.cpp │ │ │ ├── DBOAssImp.h │ │ │ ├── DBOBlock.cpp │ │ │ ├── DBOBlock.h │ │ │ ├── DBOData.cpp │ │ │ ├── DBOData.h │ │ │ ├── DBOEffects.cpp │ │ │ ├── DBOEffects.h │ │ │ ├── DBOExternals.cpp │ │ │ ├── DBOExternals.h │ │ │ ├── DBOFile.cpp │ │ │ ├── DBOFile.h │ │ │ ├── DBOFormat.cpp │ │ │ ├── DBOFormat.h │ │ │ ├── DBOFrame.cpp │ │ │ ├── DBOFrame.h │ │ │ ├── DBOMesh.cpp │ │ │ ├── DBOMesh.h │ │ │ ├── DBORawMesh.cpp │ │ │ ├── DBORawMesh.h │ │ │ └── Extras │ │ │ │ ├── NVMeshMender.h │ │ │ │ └── NVMeshMenderD3DX.cpp │ │ │ ├── Data │ │ │ ├── CDataC.cpp │ │ │ └── CDataC.h │ │ │ ├── EnhancedMatrix │ │ │ ├── CEnhancedMatrixC.cpp │ │ │ ├── CEnhancedMatrixC.h │ │ │ ├── CEnhancedMatrixDataC.h │ │ │ ├── CEnhancedMatrixManagerC.cpp │ │ │ ├── CEnhancedMatrixManagerC.h │ │ │ └── Modes │ │ │ │ ├── CModeC.cpp │ │ │ │ ├── CModeC.h │ │ │ │ └── QuadTrees │ │ │ │ ├── CQuadTreesC.cpp │ │ │ │ └── CQuadTreesC.h │ │ │ ├── Error │ │ │ ├── CError.cpp │ │ │ ├── CError.h │ │ │ └── CRuntimeErrors.h │ │ │ ├── FTP │ │ │ ├── CFTPC.cpp │ │ │ ├── HTTPComm.cpp │ │ │ ├── HTTPComm.h │ │ │ ├── ftp.cpp │ │ │ └── ftp.h │ │ │ ├── File │ │ │ └── CFileC.cpp │ │ │ ├── GameFX │ │ │ └── GameFX.cpp │ │ │ ├── Image │ │ │ ├── CImageC.cpp │ │ │ └── icons │ │ │ │ ├── DIB.C │ │ │ │ ├── DIB.H │ │ │ │ ├── ICONPRO.C │ │ │ │ ├── ICONPRO.H │ │ │ │ ├── ICONS.C │ │ │ │ ├── ICONS.H │ │ │ │ └── RESOURCE.H │ │ │ ├── Input │ │ │ ├── CInputC.cpp │ │ │ ├── CInputC.h │ │ │ ├── Controller.cpp │ │ │ └── Controller.h │ │ │ ├── Light │ │ │ ├── CLightC.cpp │ │ │ ├── CLightDataC.h │ │ │ ├── CLightManagerC.cpp │ │ │ └── CLightManagerC.h │ │ │ ├── Matrix │ │ │ ├── CMatrixC.cpp │ │ │ ├── CMatrixC.h │ │ │ ├── CMatrixDataC.h │ │ │ ├── CMatrixManagerC.cpp │ │ │ ├── CMatrixManagerC.h │ │ │ ├── CPositionC.cpp │ │ │ └── CPositionC.h │ │ │ ├── Memblocks │ │ │ └── CMemblocks.cpp │ │ │ ├── MemoryManager │ │ │ ├── DarkMemoryManager.cpp │ │ │ └── DarkMemoryManager.h │ │ │ ├── Multiplayer │ │ │ ├── CMultiplayerC.cpp │ │ │ ├── CMultiplayerC.h │ │ │ ├── Common.h │ │ │ └── Network │ │ │ │ ├── CNetwork.cpp │ │ │ │ ├── CNetwork.h │ │ │ │ ├── NetQueue.cpp │ │ │ │ └── NetQueue.h │ │ │ ├── MultiplayerPlus │ │ │ ├── Multiplayer.cpp │ │ │ ├── Multiplayer.h │ │ │ ├── netvoice.cpp │ │ │ └── netvoice.h │ │ │ ├── Music │ │ │ ├── BasePlayer.cpp │ │ │ ├── BasePlayer.h │ │ │ ├── CMusicC.cpp │ │ │ ├── CMusicManagerC.cpp │ │ │ ├── CMusicManagerC.h │ │ │ ├── CdPlayer.cpp │ │ │ ├── CdPlayer.h │ │ │ ├── MidiPlayer.cpp │ │ │ ├── MidiPlayer.h │ │ │ ├── MusicPlayer.cpp │ │ │ └── MusicPlayer.h │ │ │ ├── Objects │ │ │ ├── BSPTree.cpp │ │ │ ├── BSPTree.h │ │ │ ├── BoxCollision │ │ │ │ ├── 3DCol.cpp │ │ │ │ ├── 3DCol.h │ │ │ │ ├── CCollision.cpp │ │ │ │ ├── CCollision.h │ │ │ │ ├── PolyPool.cpp │ │ │ │ ├── PolyPool.h │ │ │ │ ├── cBoxCol.cpp │ │ │ │ └── cBoxCol.h │ │ │ ├── CObjectDataC.h │ │ │ ├── CObjectManagerC.cpp │ │ │ ├── CObjectManagerC.h │ │ │ ├── CObjectManagerDBP.cpp │ │ │ ├── CObjectManagerDBP.h │ │ │ ├── CObjectsC.cpp │ │ │ ├── CPositionC.cpp │ │ │ ├── CPositionC.h │ │ │ ├── CSG.cpp │ │ │ ├── CSG.h │ │ │ ├── Collision.cpp │ │ │ ├── Collision.h │ │ │ ├── CommonC.cpp │ │ │ ├── CommonC.h │ │ │ ├── Compiler │ │ │ │ ├── CBSPTree.cpp │ │ │ │ ├── CBSPTree.h │ │ │ │ ├── CBounds.cpp │ │ │ │ ├── CBounds.h │ │ │ │ ├── CCompiler.cpp │ │ │ │ ├── CCompiler.h │ │ │ │ ├── CPlane.cpp │ │ │ │ ├── CPlane.h │ │ │ │ ├── CPortals.cpp │ │ │ │ ├── CPortals.h │ │ │ │ ├── CVector.cpp │ │ │ │ ├── CVector.h │ │ │ │ ├── Common.h │ │ │ │ ├── CompilerTypes.cpp │ │ │ │ ├── CompilerTypes.h │ │ │ │ ├── ProcessHSR.cpp │ │ │ │ └── ProcessHSR.h │ │ │ ├── ElipsoidCollision │ │ │ │ ├── Collision.cpp │ │ │ │ ├── Collision.h │ │ │ │ ├── col_example.cpp │ │ │ │ ├── col_global.h │ │ │ │ ├── col_local.h │ │ │ │ ├── col_response.cpp │ │ │ │ ├── col_step.cpp │ │ │ │ └── col_types.cpp │ │ │ ├── FBXExporter │ │ │ │ ├── FBXExporter.cpp │ │ │ │ ├── FBXExporter.h │ │ │ │ ├── Material.h │ │ │ │ ├── MathHelper.cpp │ │ │ │ ├── MathHelper.h │ │ │ │ ├── Utilities.cpp │ │ │ │ ├── Utilities.h │ │ │ │ └── Vertex.h │ │ │ ├── GameFXCalls.cpp │ │ │ ├── Nodetree.cpp │ │ │ ├── Nodetree.h │ │ │ ├── Occlusion │ │ │ │ ├── HZBManager.cpp │ │ │ │ ├── HZBManager.h │ │ │ │ ├── cOcclusion.cpp │ │ │ │ └── cOcclusion.h │ │ │ ├── ShadowMapping │ │ │ │ ├── DepthTexture.cpp │ │ │ │ ├── DepthTexture.h │ │ │ │ ├── cShadowMaps.cpp │ │ │ │ ├── cShadowMaps.h │ │ │ │ ├── cShadowMaps_mine060217.cpp │ │ │ │ └── cShadowMaps_preben020217.cpp │ │ │ ├── Universe.cpp │ │ │ ├── Universe.h │ │ │ ├── cFrustum.cpp │ │ │ ├── cFrustum.h │ │ │ ├── cLightMaps.cpp │ │ │ ├── cLightMaps.h │ │ │ ├── cNodeTree.cpp │ │ │ ├── cNodeTree.h │ │ │ ├── cSpecialEffects.cpp │ │ │ └── cSpecialEffects.h │ │ │ ├── Position │ │ │ ├── CPositionC.cpp │ │ │ └── CPositionC.h │ │ │ ├── Setup │ │ │ ├── CGfxC.cpp │ │ │ ├── VR920 │ │ │ │ ├── IWRFilterTracking.cpp │ │ │ │ ├── IWRsdk.c │ │ │ │ ├── IWRsdk.h │ │ │ │ └── readme.txt │ │ │ └── Wrap920 │ │ │ │ ├── IWRFilterTracking.cpp │ │ │ │ ├── IWRsdk.c │ │ │ │ └── IWRsdk.h │ │ │ ├── Sound │ │ │ ├── ADPCMtoWAV.cpp │ │ │ ├── ADPCMtoWAV.h │ │ │ ├── CSoundC.cpp │ │ │ ├── CSoundDataC.h │ │ │ ├── CSoundManagerC.cpp │ │ │ ├── CSoundManagerC.h │ │ │ ├── OggVorbis.cpp │ │ │ ├── OggVorbisEncoderAudio.cpp │ │ │ ├── OggVorbisEncoderAudio.h │ │ │ ├── OggVorbisEncoderEncode.cpp │ │ │ ├── OggVorbisEncoderEncode.h │ │ │ ├── OggVorbisEncoderMain.cpp │ │ │ ├── OggVorbisEncoderPlatform.cpp │ │ │ ├── OggVorbisEncoderPlatform.h │ │ │ ├── dsutil.cpp │ │ │ ├── dsutil.h │ │ │ ├── dxutil.cpp │ │ │ ├── dxutil.h │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ ├── lib │ │ │ │ ├── ogg.lib │ │ │ │ ├── ogg_d.lib │ │ │ │ ├── ogg_static.lib │ │ │ │ ├── ogg_static_d.lib │ │ │ │ ├── vorbis.lib │ │ │ │ ├── vorbis_d.lib │ │ │ │ ├── vorbis_static.lib │ │ │ │ ├── vorbis_static_d.lib │ │ │ │ ├── vorbisenc.lib │ │ │ │ ├── vorbisenc_d.lib │ │ │ │ ├── vorbisenc_static.lib │ │ │ │ ├── vorbisenc_static_d.lib │ │ │ │ ├── vorbisfile.lib │ │ │ │ ├── vorbisfile_d.lib │ │ │ │ ├── vorbisfile_static.lib │ │ │ │ └── vorbisfile_static_d.lib │ │ │ │ ├── ogg │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ │ ├── SpecialEffects │ │ │ ├── CBaseParticleC.cpp │ │ │ ├── CBaseParticleC.h │ │ │ ├── CParticleC.cpp │ │ │ ├── CParticleDataC.h │ │ │ ├── CParticleManagerC.cpp │ │ │ ├── CParticleManagerC.h │ │ │ ├── CPositionC.cpp │ │ │ ├── CPositionC.h │ │ │ ├── dxutil.cpp │ │ │ └── dxutil.h │ │ │ ├── Sprites │ │ │ ├── CSpriteDataC.h │ │ │ ├── CSpriteManagerC.cpp │ │ │ ├── CSpriteManagerC.h │ │ │ ├── CSprites2C.cpp │ │ │ ├── CSpritesC.cpp │ │ │ └── ImageSupport.h │ │ │ ├── System │ │ │ ├── CSystemC.cpp │ │ │ ├── dispinfo.h │ │ │ ├── dxdiaginfo.cpp │ │ │ ├── dxdiaginfo.h │ │ │ ├── fileinfo.h │ │ │ ├── inptinfo.h │ │ │ ├── main.cpp │ │ │ ├── musinfo.h │ │ │ ├── netinfo.h │ │ │ ├── showinfo.h │ │ │ ├── sndinfo.h │ │ │ └── sysinfo.h │ │ │ ├── Text │ │ │ ├── CPositionC.cpp │ │ │ ├── CPositionC.h │ │ │ └── CTextC.cpp │ │ │ ├── Transforms │ │ │ ├── OptimizedMath.cpp │ │ │ ├── OptimizedMath.h │ │ │ ├── Transform.cpp │ │ │ ├── Transform.h │ │ │ ├── TransformsAPI.cpp │ │ │ └── TransformsAPI.h │ │ │ └── Vectors │ │ │ ├── cVectorC.cpp │ │ │ ├── cVectorDataC.h │ │ │ ├── cVectorManagerC.cpp │ │ │ └── cVectorManagerC.h │ └── Include │ │ ├── BlitzTerrain.h │ │ ├── BulletPhysics.H │ │ ├── CAnimation.h │ │ ├── CBasic2DC.h │ │ ├── CBitmapC.h │ │ ├── CFTPC.h │ │ ├── CFileC.h │ │ ├── CGfxC.h │ │ ├── CImageC.h │ │ ├── CInputC.h │ │ ├── CLightC.h │ │ ├── CMemblocks.h │ │ ├── CMusicC.h │ │ ├── CObjectsC.h │ │ ├── CParticleC.h │ │ ├── CSoundC.h │ │ ├── CSpritesC.h │ │ ├── CSystemC.h │ │ ├── CTextC.h │ │ ├── Conv3DS.h │ │ ├── ConvX.h │ │ ├── DarkAI.h │ │ ├── DarkLUA.h │ │ ├── Enchancements.h │ │ ├── GGVR.h │ │ ├── GGWMR.h │ │ ├── GGWMR_OLD.h │ │ ├── GameFX.h │ │ ├── LightMapper.h │ │ ├── PhotonCommands.h │ │ ├── SimonReloaded.h │ │ ├── SoftwareCulling.h │ │ ├── SteamCommands.h │ │ ├── cOccluderThread.h │ │ ├── cThread.h │ │ ├── cVectorC.h │ │ ├── ccamerac.h │ │ ├── directx-macros.h │ │ ├── global.h │ │ └── globstruct.h ├── GameGuru.sln ├── GameGuru │ ├── Entity FPE Fixes and Shaders and Scripts.txt │ ├── Files │ │ └── entitybank │ │ │ ├── Collectables │ │ │ ├── Jet Pack Military Fuel Tank.fpe │ │ │ └── Syringe.fpe │ │ │ └── _markers │ │ │ ├── Heal Zone.fpe │ │ │ └── Hurt Zone.fpe │ ├── Imgui │ │ ├── LICENSE.txt │ │ ├── boxer.h │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_gg_dx11.cpp │ │ ├── imgui_gg_dx11.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ ├── imgui_internal.h │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ ├── Include │ │ ├── Common-File.h │ │ ├── Common-Fonts.h │ │ ├── Common-Images.h │ │ ├── Common-Input.h │ │ ├── Common-Keys.h │ │ ├── Common-Sounds.h │ │ ├── Common-Strings.h │ │ ├── Common.h │ │ ├── G-Entity.h │ │ ├── G-Gun.h │ │ ├── G-Lighting.h │ │ ├── M-AudioVolume.h │ │ ├── M-CharacterCreatorPlus.h │ │ ├── M-CharacterCreatorPlusTTS.h │ │ ├── M-CharacterKit.h │ │ ├── M-CharacterSound.h │ │ ├── M-ConstructionKit.h │ │ ├── M-ConstructionKitEdit.h │ │ ├── M-DAI.h │ │ ├── M-DAINew.h │ │ ├── M-Debug.h │ │ ├── M-Decal.h │ │ ├── M-EBE.h │ │ ├── M-Entity.h │ │ ├── M-Explosion&Fire.h │ │ ├── M-Game.h │ │ ├── M-Grass.h │ │ ├── M-GridEdit.h │ │ ├── M-Gun.h │ │ ├── M-HUD.h │ │ ├── M-Importer.h │ │ ├── M-Interactive.h │ │ ├── M-LUA-Entity.h │ │ ├── M-LUA-General.h │ │ ├── M-LUA.h │ │ ├── M-Lighting.h │ │ ├── M-Lightmapping.h │ │ ├── M-MP.h │ │ ├── M-MapFile.h │ │ ├── M-Material.h │ │ ├── M-OBS.h │ │ ├── M-Panel.h │ │ ├── M-Particles.h │ │ ├── M-Physics.h │ │ ├── M-Postprocess.h │ │ ├── M-Ragdoll.h │ │ ├── M-RealSense.h │ │ ├── M-Sky.h │ │ ├── M-Sliders.h │ │ ├── M-Terrain.h │ │ ├── M-TerrainNew.h │ │ ├── M-Titles.h │ │ ├── M-UndoSys-Object.h │ │ ├── M-UndoSys-Terrain.h │ │ ├── M-UndoSys.h │ │ ├── M-Visuals.h │ │ ├── M-Waypoint.h │ │ ├── M-Weapon.h │ │ ├── M-WelcomeSystem.h │ │ ├── M-Widget.h │ │ ├── MapEditor.h │ │ ├── Types.h │ │ ├── cStr.h │ │ ├── gameguru.h │ │ ├── miniz.h │ │ ├── preprocessor-flags.h │ │ ├── preprocessor-moreflags.h │ │ ├── sha1.h │ │ └── sha2.h │ ├── Shaders and Scripts │ │ ├── effectbank │ │ │ └── reloaded │ │ │ │ ├── Scatter.blob │ │ │ │ ├── Scatter.fx │ │ │ │ ├── apbr_TreeCoresmall.fx │ │ │ │ ├── apbr_TreeCorestill.fx │ │ │ │ ├── apbr_TreeCorewind.fx │ │ │ │ ├── apbr_anim.blob │ │ │ │ ├── apbr_anim.fx │ │ │ │ ├── apbr_anim8bone.blob │ │ │ │ ├── apbr_anim8bone.fx │ │ │ │ ├── apbr_anim8bonewithtran.blob │ │ │ │ ├── apbr_anim8bonewithtran.fx │ │ │ │ ├── apbr_animwithtran.blob │ │ │ │ ├── apbr_animwithtran.fx │ │ │ │ ├── apbr_basic.fx │ │ │ │ ├── apbr_basic_parallax.fx │ │ │ │ ├── apbr_core.fx │ │ │ │ ├── apbr_illum.blob │ │ │ │ ├── apbr_illum.fx │ │ │ │ ├── apbr_illum_anim.blob │ │ │ │ ├── apbr_illum_anim.fx │ │ │ │ ├── apbr_lightmapped.blob │ │ │ │ ├── apbr_lightmapped.fx │ │ │ │ ├── apbr_lightmapped_illum.blob │ │ │ │ ├── apbr_lightmapped_illum.fx │ │ │ │ ├── apbr_noalpha.blob │ │ │ │ ├── apbr_noalpha.fx │ │ │ │ ├── apbr_terrain.blob │ │ │ │ ├── apbr_terrain.fx │ │ │ │ ├── apbr_tree.blob │ │ │ │ ├── apbr_tree.fx │ │ │ │ ├── apbr_treea.blob │ │ │ │ ├── apbr_treea.fx │ │ │ │ ├── apbr_treeleafsmall.blob │ │ │ │ ├── apbr_treeleafsmall.fx │ │ │ │ ├── apbr_treeleafstill.fx │ │ │ │ ├── apbr_treeleafwind.blob │ │ │ │ ├── apbr_treeleafwind.fx │ │ │ │ ├── apbr_veg.blob │ │ │ │ ├── apbr_veg.fx │ │ │ │ ├── cascadeshadows.fx │ │ │ │ ├── character_basic.blob │ │ │ │ ├── character_basic.fx │ │ │ │ ├── character_editor.blob │ │ │ │ ├── character_editor.fx │ │ │ │ ├── character_static.blob │ │ │ │ ├── character_static.fx │ │ │ │ ├── character_transparency.blob │ │ │ │ ├── character_transparency.fx │ │ │ │ ├── constantbuffers.blob │ │ │ │ ├── constantbuffers.fx │ │ │ │ ├── decal_animate4.blob │ │ │ │ ├── decal_animate4.fx │ │ │ │ ├── decal_animate8.blob │ │ │ │ ├── decal_animate8.fx │ │ │ │ ├── decal_animatestrip6.blob │ │ │ │ ├── decal_animatestrip6.fx │ │ │ │ ├── decal_basic.blob │ │ │ │ ├── decal_basic.fx │ │ │ │ ├── dynamicterrainshadow_basic.blob │ │ │ │ ├── dynamicterrainshadow_basic.fx │ │ │ │ ├── ebe_basic.blob │ │ │ │ ├── ebe_basic.fx │ │ │ │ ├── effect_scroll.blob │ │ │ │ ├── effect_scroll.fx │ │ │ │ ├── effect_wave.blob │ │ │ │ ├── effect_wave.fx │ │ │ │ ├── entity_anim.blob │ │ │ │ ├── entity_anim.fx │ │ │ │ ├── entity_basic.blob │ │ │ │ ├── entity_basic.fx │ │ │ │ ├── entity_core.blob │ │ │ │ ├── entity_core.fx │ │ │ │ ├── entity_cube.blob │ │ │ │ ├── entity_cube.fx │ │ │ │ ├── entity_cubealpha.blob │ │ │ │ ├── entity_cubealpha.fx │ │ │ │ ├── entity_cubeambience.blob │ │ │ │ ├── entity_cubeambience.fx │ │ │ │ ├── entity_transparency.blob │ │ │ │ ├── entity_transparency.fx │ │ │ │ ├── entity_water.blob │ │ │ │ ├── entity_water.fx │ │ │ │ ├── gui_basic.blob │ │ │ │ ├── gui_basic.fx │ │ │ │ ├── gui_diffuse.blob │ │ │ │ ├── gui_diffuse.fx │ │ │ │ ├── gui_showdepth.blob │ │ │ │ ├── gui_showdepth.fx │ │ │ │ ├── gui_wireframe.blob │ │ │ │ ├── gui_wireframe.fx │ │ │ │ ├── media │ │ │ │ ├── AGED.png │ │ │ │ ├── CUBE.dds │ │ │ │ ├── IBR.png │ │ │ │ ├── LUT.png │ │ │ │ ├── NOISE.png │ │ │ │ ├── Sun.dds │ │ │ │ ├── Sun_old.dds │ │ │ │ ├── blank_I.DDS │ │ │ │ ├── blank_N.dds │ │ │ │ ├── blank_O.DDS │ │ │ │ ├── blank_black.dds │ │ │ │ ├── blank_high_S.DDS │ │ │ │ ├── blank_low_S.DDS │ │ │ │ ├── blank_medium_S.DDS │ │ │ │ ├── blank_none_S.DDS │ │ │ │ ├── circle.dds │ │ │ │ ├── decal.dds │ │ │ │ ├── detail_default.dds │ │ │ │ ├── detailmap.dds │ │ │ │ ├── heightmap.dds │ │ │ │ ├── materials │ │ │ │ │ ├── 0_Gloss.dds │ │ │ │ │ ├── 0_Metalness.dds │ │ │ │ │ ├── 10_Gloss.dds │ │ │ │ │ ├── 10_Metalness.dds │ │ │ │ │ ├── 11_Gloss.dds │ │ │ │ │ ├── 11_Metalness.dds │ │ │ │ │ ├── 12_Gloss.dds │ │ │ │ │ ├── 12_Metalness.dds │ │ │ │ │ ├── 13_Gloss.dds │ │ │ │ │ ├── 13_Metalness.dds │ │ │ │ │ ├── 14_Gloss.dds │ │ │ │ │ ├── 14_Metalness.dds │ │ │ │ │ ├── 15_Gloss.dds │ │ │ │ │ ├── 15_Metalness.dds │ │ │ │ │ ├── 16_Gloss.dds │ │ │ │ │ ├── 16_Metalness.dds │ │ │ │ │ ├── 17_Gloss.dds │ │ │ │ │ ├── 17_Metalness.dds │ │ │ │ │ ├── 18_Gloss.dds │ │ │ │ │ ├── 18_Metalness.dds │ │ │ │ │ ├── 1_Gloss.dds │ │ │ │ │ ├── 1_Metalness.dds │ │ │ │ │ ├── 2_Gloss.dds │ │ │ │ │ ├── 2_Metalness.dds │ │ │ │ │ ├── 3_Gloss.dds │ │ │ │ │ ├── 3_Metalness.dds │ │ │ │ │ ├── 4_Gloss.dds │ │ │ │ │ ├── 4_Metalness.dds │ │ │ │ │ ├── 5_Gloss.dds │ │ │ │ │ ├── 5_Metalness.dds │ │ │ │ │ ├── 6_Gloss.dds │ │ │ │ │ ├── 6_Metalness.dds │ │ │ │ │ ├── 7_Gloss.dds │ │ │ │ │ ├── 7_Metalness.dds │ │ │ │ │ ├── 8_Gloss.dds │ │ │ │ │ ├── 8_Metalness.dds │ │ │ │ │ ├── 9_Gloss.dds │ │ │ │ │ ├── 9_Metalness.dds │ │ │ │ │ └── materialreference.txt │ │ │ │ ├── water.dds │ │ │ │ ├── waves2.dds │ │ │ │ └── white_D.dds │ │ │ │ ├── post-bloom.blob │ │ │ │ ├── post-bloom.fx │ │ │ │ ├── post-core.blob │ │ │ │ ├── post-core.fx │ │ │ │ ├── post-none.blob │ │ │ │ ├── post-none.fx │ │ │ │ ├── post-rift.blob │ │ │ │ ├── post-rift.fx │ │ │ │ ├── post-sao.blob │ │ │ │ ├── post-sao.fx │ │ │ │ ├── settings.blob │ │ │ │ ├── settings.fx │ │ │ │ ├── shadow_basic.blob │ │ │ │ ├── shadow_basic.fx │ │ │ │ ├── sky_atmosphere.blob │ │ │ │ ├── sky_atmosphere.fx │ │ │ │ ├── sky_basic.blob │ │ │ │ ├── sky_basic.fx │ │ │ │ ├── sky_core.blob │ │ │ │ ├── sky_core.fx │ │ │ │ ├── sky_scroll.blob │ │ │ │ ├── sky_scroll.fx │ │ │ │ ├── skyscroll_basic.blob │ │ │ │ ├── skyscroll_basic.fx │ │ │ │ ├── skyscroll_basic_proc.blob │ │ │ │ ├── skyscroll_basic_proc.fx │ │ │ │ ├── sprite_basic.blob │ │ │ │ ├── sprite_basic.fx │ │ │ │ ├── static_basic.blob │ │ │ │ ├── static_basic.fx │ │ │ │ ├── terrain_basic.blob │ │ │ │ ├── terrain_basic.fx │ │ │ │ ├── tree_basic.blob │ │ │ │ ├── tree_basic.fx │ │ │ │ ├── treea_basic.blob │ │ │ │ ├── treea_basic.fx │ │ │ │ ├── vegetation_basic.blob │ │ │ │ ├── vegetation_basic.fx │ │ │ │ ├── water_basic.blob │ │ │ │ ├── water_basic.fx │ │ │ │ ├── weapon_basic.blob │ │ │ │ ├── weapon_basic.fx │ │ │ │ ├── weapon_bone.blob │ │ │ │ └── weapon_bone.fx │ │ └── scriptbank │ │ │ ├── Chess │ │ │ ├── cancel.png │ │ │ ├── cpu_black.png │ │ │ ├── cpu_white.png │ │ │ ├── difficulty.png │ │ │ ├── difselect.png │ │ │ ├── garbochess.lua │ │ │ ├── hand.png │ │ │ ├── mouse_cursor.png │ │ │ ├── panel.png │ │ │ ├── piece.lua │ │ │ ├── player_black.png │ │ │ ├── player_white.png │ │ │ ├── pointer.png │ │ │ └── start_game.png │ │ │ ├── ChromaticAbberation.lua │ │ │ ├── Classics │ │ │ ├── ai_classiccharacter_anubis.lua │ │ │ ├── ai_classiccharacter_apocalypse.lua │ │ │ ├── ai_classiccharacter_axebrute.lua │ │ │ ├── ai_classiccharacter_chainsawbrute.lua │ │ │ ├── ai_classiccharacter_cleo.lua │ │ │ ├── ai_classiccharacter_crusader.lua │ │ │ ├── ai_classiccharacter_dante.lua │ │ │ ├── ai_classiccharacter_decayed.lua │ │ │ ├── ai_classiccharacter_dhor.lua │ │ │ ├── ai_classiccharacter_dogman.lua │ │ │ ├── ai_classiccharacter_elf.lua │ │ │ ├── ai_classiccharacter_elhumongo.lua │ │ │ ├── ai_classiccharacter_eyegorn.lua │ │ │ ├── ai_classiccharacter_fearghal.lua │ │ │ ├── ai_classiccharacter_giza.lua │ │ │ ├── ai_classiccharacter_grendel.lua │ │ │ ├── ai_classiccharacter_isus.lua │ │ │ ├── ai_classiccharacter_jaws.lua │ │ │ ├── ai_classiccharacter_lobotomy.lua │ │ │ ├── ai_classiccharacter_medusa.lua │ │ │ ├── ai_classiccharacter_minos.lua │ │ │ ├── ai_classiccharacter_nekheb.lua │ │ │ ├── ai_classiccharacter_pharaoh.lua │ │ │ ├── ai_classiccharacter_pincher.lua │ │ │ ├── ai_classiccharacter_satyr.lua │ │ │ ├── ai_classiccharacter_spiky.lua │ │ │ └── ai_classiccharacter_unarmed.lua │ │ │ ├── Easter │ │ │ ├── activation.lua │ │ │ ├── ai_Todd.lua │ │ │ ├── butterfly.lua │ │ │ ├── chest.lua │ │ │ ├── display01 │ │ │ │ ├── datadisplay01.lua │ │ │ │ ├── display01.lua │ │ │ │ ├── eggscountstart01.lua │ │ │ │ ├── main_music01.lua │ │ │ │ ├── sprites01.lua │ │ │ │ └── win_music01.lua │ │ │ ├── display02 │ │ │ │ ├── datadisplay02.lua │ │ │ │ ├── display02.lua │ │ │ │ ├── eggscountstart02.lua │ │ │ │ ├── main_music02.lua │ │ │ │ ├── sprites02.lua │ │ │ │ └── win_music02.lua │ │ │ ├── display03 │ │ │ │ ├── datadisplay03.lua │ │ │ │ ├── display03.lua │ │ │ │ ├── eggscountstart03.lua │ │ │ │ ├── main_music03.lua │ │ │ │ ├── sprites03.lua │ │ │ │ ├── timer03.lua │ │ │ │ ├── timesup03.lua │ │ │ │ └── win_music03.lua │ │ │ ├── display04 │ │ │ │ ├── activate_portal04.lua │ │ │ │ ├── datasdisplay04.lua │ │ │ │ ├── display04.lua │ │ │ │ ├── eggscountstart04.lua │ │ │ │ ├── main_music04.lua │ │ │ │ ├── sprites04.lua │ │ │ │ └── win_music04.lua │ │ │ ├── display05 │ │ │ │ ├── activate_portal05.lua │ │ │ │ ├── castle_gate_01_05.lua │ │ │ │ ├── castle_gate_02_05.lua │ │ │ │ ├── datadisplay05.lua │ │ │ │ ├── display05.lua │ │ │ │ ├── eggscountstart05.lua │ │ │ │ ├── fog_set1_05.lua │ │ │ │ ├── fog_set2_05.lua │ │ │ │ ├── main_music01_05.lua │ │ │ │ ├── main_music02_05.lua │ │ │ │ ├── skydome_05.lua │ │ │ │ ├── sprites05.lua │ │ │ │ └── win_music05.lua │ │ │ ├── eggradar │ │ │ │ ├── eggradar.lua │ │ │ │ ├── radar back.png │ │ │ │ ├── radar red.png │ │ │ │ └── radar yellow.png │ │ │ ├── eggs_collect │ │ │ │ ├── egg1collect.lua │ │ │ │ ├── egg1collect_hiddeninchest.lua │ │ │ │ ├── egg1collected_sound.lua │ │ │ │ ├── egg2collect.lua │ │ │ │ ├── egg2collect_hiddeninchest.lua │ │ │ │ ├── egg2collected_sound.lua │ │ │ │ ├── egg3collect.lua │ │ │ │ ├── egg3collect_hiddeninchest.lua │ │ │ │ ├── egg3collected_sound.lua │ │ │ │ ├── egg4collect.lua │ │ │ │ ├── egg4collect_hiddeninchest.lua │ │ │ │ ├── egg4collected_sound.lua │ │ │ │ ├── egg5collect.lua │ │ │ │ ├── egg5collect_hiddeninchest.lua │ │ │ │ └── egg5collected_sound.lua │ │ │ ├── fast_enemy.lua │ │ │ ├── hide_terrain.lua │ │ │ ├── hot_lava.lua │ │ │ ├── invisible_wall.lua │ │ │ ├── loopsound.lua │ │ │ ├── meadow_flowers_distance.lua │ │ │ ├── objects_distance.lua │ │ │ ├── objects_distance_2.lua │ │ │ ├── playsound_zone.lua │ │ │ ├── poison_dust.lua │ │ │ ├── poison_flower.lua │ │ │ ├── poison_flower_walkable.lua │ │ │ ├── portal.lua │ │ │ ├── princess.lua │ │ │ ├── slow_enemy.lua │ │ │ └── sunflower_distance.lua │ │ │ ├── ai │ │ │ ├── ai_meleebiter.lua │ │ │ ├── ai_patrol.lua │ │ │ ├── module_agro.lua │ │ │ ├── module_cameraoverride.lua │ │ │ ├── module_combatcore.lua │ │ │ ├── module_combateffects.lua │ │ │ ├── module_combatmelee.lua │ │ │ ├── module_combatshoot.lua │ │ │ ├── module_core.lua │ │ │ └── module_neutral.lua │ │ │ ├── ai_charge.lua │ │ │ ├── ai_cover.lua │ │ │ ├── ai_dance.lua │ │ │ ├── ai_demon.lua │ │ │ ├── ai_dragon.lua │ │ │ ├── ai_fantasycharacter.lua │ │ │ ├── ai_fantasycreature.lua │ │ │ ├── ai_fastzombie.lua │ │ │ ├── ai_melee.lua │ │ │ ├── ai_melee_animmove.lua │ │ │ ├── ai_meleepatrol.lua │ │ │ ├── ai_neutral.lua │ │ │ ├── ai_raytestforentity.lua │ │ │ ├── ai_soldier.lua │ │ │ ├── ai_soldier_rpg.lua │ │ │ ├── ai_soldier_rpg_guard.lua │ │ │ ├── ai_viewanimations.lua │ │ │ ├── ai_viewanimationstatic.lua │ │ │ ├── ai_wanderer.lua │ │ │ ├── ai_zombiewalk.lua │ │ │ ├── ai_zombiewalk3.lua │ │ │ ├── ammo.lua │ │ │ ├── ammo_highlight.lua │ │ │ ├── animation_finder.lua │ │ │ ├── antiques │ │ │ ├── cabinet.lua │ │ │ └── cabinetpart.lua │ │ │ ├── appear.lua │ │ │ ├── atester.lua │ │ │ ├── bookcase.lua │ │ │ ├── change_texture_demo.lua │ │ │ ├── checkpoint.lua │ │ │ ├── coverzone.lua │ │ │ ├── darkzone.lua │ │ │ ├── decal_facing.lua │ │ │ ├── decal_flat.lua │ │ │ ├── default.lua │ │ │ ├── demons │ │ │ └── ai_demon.lua │ │ │ ├── disappear.lua │ │ │ ├── door.lua │ │ │ ├── doorauto.lua │ │ │ ├── doorautolegacy.lua │ │ │ ├── doorremote.lua │ │ │ ├── doorswitch.lua │ │ │ ├── doorswitchanimate.lua │ │ │ ├── fantasy │ │ │ ├── ai_fantasyally_imp.lua │ │ │ ├── ai_fantasyally_knight.lua │ │ │ ├── ai_fantasycharacter_barbarian.lua │ │ │ ├── ai_fantasycharacter_knight.lua │ │ │ ├── ai_fantasycharacter_ranger.lua │ │ │ ├── ai_fantasycharacter_skeleton.lua │ │ │ ├── ai_fantasycreature_goblin.lua │ │ │ ├── ai_fantasycreature_imp.lua │ │ │ ├── ai_fantasycreature_ogre.lua │ │ │ ├── ai_fantasycreature_orc.lua │ │ │ ├── ai_fantasycreature_priest.lua │ │ │ ├── ai_fantasycreature_reptilian.lua │ │ │ ├── ai_fantasycreature_taurus.lua │ │ │ └── ai_fantasyviewanimations.lua │ │ │ ├── floating_platform.lua │ │ │ ├── floorzone.lua │ │ │ ├── gameloop.lua │ │ │ ├── gameplayercontrol.lua │ │ │ ├── gameplayercontrol_old.lua │ │ │ ├── gfx │ │ │ └── gfx folder.txt │ │ │ ├── global.lua │ │ │ ├── globalsoundtests.lua │ │ │ ├── goindoors.lua │ │ │ ├── gooutdoors.lua │ │ │ ├── graphix │ │ │ ├── graphix_explosion.lua │ │ │ ├── graphix_explosion_lastone.lua │ │ │ ├── graphix_explosion_old.lua │ │ │ └── graphix_explosion_older.lua │ │ │ ├── healingzone.lua │ │ │ ├── health.lua │ │ │ ├── healthboost.lua │ │ │ ├── hidehuds.lua │ │ │ ├── hidelightwhenclose.lua │ │ │ ├── highlight_entity_gold.lua │ │ │ ├── hurt.lua │ │ │ ├── imageinzone.lua │ │ │ ├── images │ │ │ ├── Easter │ │ │ │ ├── 000.png │ │ │ │ ├── 001.png │ │ │ │ ├── 002.png │ │ │ │ ├── 003.png │ │ │ │ ├── 004.png │ │ │ │ ├── 005.png │ │ │ │ ├── 006.png │ │ │ │ ├── 007.png │ │ │ │ ├── 008.png │ │ │ │ ├── 009.png │ │ │ │ ├── 010.png │ │ │ │ ├── 011.png │ │ │ │ ├── 012.png │ │ │ │ ├── 013.png │ │ │ │ ├── 014.png │ │ │ │ ├── 015.png │ │ │ │ └── 016.png │ │ │ ├── Get to the River │ │ │ │ ├── 000.png │ │ │ │ └── 001.png │ │ │ ├── Heirs Revenge │ │ │ │ ├── 000.png │ │ │ │ └── 001.png │ │ │ ├── Morning Mountain Stroll │ │ │ │ ├── 000.png │ │ │ │ └── 001.png │ │ │ ├── Sprite Test │ │ │ │ ├── Lee.png │ │ │ │ └── ravey.png │ │ │ ├── The Asylum │ │ │ │ ├── 000.png │ │ │ │ └── 001.png │ │ │ ├── The Big Escape │ │ │ │ ├── 000.png │ │ │ │ ├── 001.png │ │ │ │ └── 002.png │ │ │ ├── cartoon │ │ │ │ ├── 000.png │ │ │ │ ├── 001.png │ │ │ │ ├── 002.png │ │ │ │ └── 003.png │ │ │ ├── cellshaded │ │ │ │ ├── 000.png │ │ │ │ ├── 001.png │ │ │ │ ├── 002.png │ │ │ │ ├── 003.png │ │ │ │ ├── 004.png │ │ │ │ ├── 005.png │ │ │ │ ├── 006.png │ │ │ │ ├── 007.png │ │ │ │ ├── 008.png │ │ │ │ ├── 009.png │ │ │ │ ├── 010.png │ │ │ │ ├── 011.png │ │ │ │ ├── 012.png │ │ │ │ ├── 013.png │ │ │ │ ├── 014.png │ │ │ │ ├── 015.png │ │ │ │ ├── 016.png │ │ │ │ ├── 017.png │ │ │ │ ├── 018.png │ │ │ │ ├── 019.png │ │ │ │ ├── 020.png │ │ │ │ ├── 021.png │ │ │ │ └── 022.png │ │ │ ├── images folder.txt │ │ │ └── imagesinzone │ │ │ │ └── Image Zone.png │ │ │ ├── invisible_wall.lua │ │ │ ├── jetpack.lua │ │ │ ├── jetpackfuel.lua │ │ │ ├── key.lua │ │ │ ├── light1.lua │ │ │ ├── light2.lua │ │ │ ├── lightswitch.lua │ │ │ ├── lightzone.lua │ │ │ ├── magic.lua │ │ │ ├── magicexplosionevent.lua │ │ │ ├── markers │ │ │ ├── ambienceinzone.lua │ │ │ ├── imageinzone.lua │ │ │ ├── teleport.lua │ │ │ └── textinzone.lua │ │ │ ├── movewithsound.lua │ │ │ ├── multiplayer_firstto10.lua │ │ │ ├── multiplayer_firstto10FriendlyFire.lua │ │ │ ├── music.lua │ │ │ ├── musicinzone.lua │ │ │ ├── musicplaytrack1.lua │ │ │ ├── musicplaytrack2.lua │ │ │ ├── musicplaytrack3.lua │ │ │ ├── musicplaytrack4.lua │ │ │ ├── non3dsoundinzone.lua │ │ │ ├── objects │ │ │ ├── loopwaypoint.lua │ │ │ └── move_away.lua │ │ │ ├── particlesinzone.lua │ │ │ ├── physlib.lua │ │ │ ├── pickuppable.lua │ │ │ ├── pickuppable │ │ │ ├── grab-hand-0B.png │ │ │ ├── grab-hand-0W.png │ │ │ ├── grab-hand-1B.png │ │ │ ├── grab-hand-1W.png │ │ │ ├── grab-hand-2B.png │ │ │ ├── grab-hand-2W.png │ │ │ ├── grab-hand-3B.png │ │ │ ├── grab-hand-3W.png │ │ │ ├── hand1.png │ │ │ └── hand2.png │ │ │ ├── play_video_on_entity.lua │ │ │ ├── play_video_on_entity2.lua │ │ │ ├── play_video_on_entity3.lua │ │ │ ├── play_video_on_entity4.lua │ │ │ ├── plrinzone.lua │ │ │ ├── plrinzonechangesky.lua │ │ │ ├── proximine.lua │ │ │ ├── quatlib.lua │ │ │ ├── radar │ │ │ ├── objective.lua │ │ │ ├── radar back.png │ │ │ ├── radar green.png │ │ │ ├── radar red.png │ │ │ ├── radar yellow.png │ │ │ ├── radar-arrow.png │ │ │ ├── radar-back.png │ │ │ ├── radar-blue.png │ │ │ ├── radar-green.png │ │ │ ├── radar-red.png │ │ │ ├── radar-white.png │ │ │ ├── radar-yellow.png │ │ │ └── radar.lua │ │ │ ├── scifi │ │ │ ├── ai_patrolbomb.lua │ │ │ ├── ai_patrolsecurity.lua │ │ │ ├── ai_scifially_drone.lua │ │ │ ├── alien.lua │ │ │ ├── alientransportinzone.lua │ │ │ ├── artefact.lua │ │ │ ├── blastdoor.lua │ │ │ ├── decal_trigger.lua │ │ │ ├── destroywhenactivated.lua │ │ │ ├── droneparticle.dds │ │ │ ├── engineer.lua │ │ │ ├── guard.lua │ │ │ ├── guard2.lua │ │ │ ├── guard_chat.lua │ │ │ ├── hidehuds.lua │ │ │ ├── liftoff.lua │ │ │ ├── light_trigger.lua │ │ │ ├── media │ │ │ │ └── artefact-vision.png │ │ │ ├── musicswapinzone.lua │ │ │ ├── pad.lua │ │ │ ├── plant.lua │ │ │ ├── soundloop.lua │ │ │ ├── spaceman.lua │ │ │ ├── tool.lua │ │ │ ├── tool_special.lua │ │ │ └── uselander.lua │ │ │ ├── showhuds.lua │ │ │ ├── simulated_sky_demo.lua │ │ │ ├── soundatplayer.lua │ │ │ ├── soundinzone.lua │ │ │ ├── spawninzone.lua │ │ │ ├── spawnwhenclose.lua │ │ │ ├── spinloop.lua │ │ │ ├── spritetest.lua │ │ │ ├── stories │ │ │ ├── Cartoon Antics │ │ │ │ ├── coincollect.lua │ │ │ │ ├── coincountstart.lua │ │ │ │ ├── coindisplay.lua │ │ │ │ └── startdisplay.lua │ │ │ ├── Cell Shaded │ │ │ │ ├── checkpointgem.lua │ │ │ │ ├── collectable.lua │ │ │ │ ├── collectable16.lua │ │ │ │ ├── collectable30.lua │ │ │ │ ├── gemcollect.lua │ │ │ │ ├── gemcollect_activate.lua │ │ │ │ ├── gemcountstart.lua │ │ │ │ ├── gemdisplay26.lua │ │ │ │ ├── gemdisplay40.lua │ │ │ │ ├── grapple_hook.lua │ │ │ │ ├── hook_target.lua │ │ │ │ ├── hook_target001.lua │ │ │ │ ├── instruction.lua │ │ │ │ ├── jumppad.lua │ │ │ │ ├── jumppad_missile.lua │ │ │ │ ├── jumppad_target.lua │ │ │ │ ├── jumppad_with_aim.lua │ │ │ │ ├── marker.lua │ │ │ │ ├── musicinzone.lua │ │ │ │ ├── note001.lua │ │ │ │ ├── note002.lua │ │ │ │ ├── note003.lua │ │ │ │ ├── note004.lua │ │ │ │ ├── note004a.lua │ │ │ │ ├── note005.lua │ │ │ │ ├── note006.lua │ │ │ │ ├── note007.lua │ │ │ │ ├── note008.lua │ │ │ │ ├── note009.lua │ │ │ │ ├── note010.lua │ │ │ │ ├── note011.lua │ │ │ │ ├── note012.lua │ │ │ │ ├── note013.lua │ │ │ │ ├── note014.lua │ │ │ │ ├── note015.lua │ │ │ │ ├── note016.lua │ │ │ │ ├── tzone001.lua │ │ │ │ ├── tzone002.lua │ │ │ │ └── vanishing_platform.lua │ │ │ ├── Get to the River │ │ │ │ ├── startdisplay.lua │ │ │ │ └── winzoneimage.lua │ │ │ ├── HealthTypes │ │ │ │ ├── gameloop.lua │ │ │ │ ├── increaseshield.lua │ │ │ │ └── onlytakebulletdamage.lua │ │ │ ├── Heirs Revenge │ │ │ │ ├── startdisplay.lua │ │ │ │ └── winzoneimage.lua │ │ │ ├── Morning Mountain Stroll │ │ │ │ ├── startdisplay.lua │ │ │ │ └── winzoneimage.lua │ │ │ ├── The Asylum │ │ │ │ ├── startdisplay.lua │ │ │ │ └── winzoneimage.lua │ │ │ ├── The Big Escape │ │ │ │ ├── gotoprompt.lua │ │ │ │ ├── missiondoor.lua │ │ │ │ ├── pickupmap.lua │ │ │ │ ├── startdisplay.lua │ │ │ │ ├── supplydump.lua │ │ │ │ └── timecharge.lua │ │ │ └── entiysoundERROR │ │ │ │ ├── zombie.lua │ │ │ │ └── zombiearea.lua │ │ │ ├── storyinzone.lua │ │ │ ├── switchmain.lua │ │ │ ├── teleporter.lua │ │ │ ├── textinzone.lua │ │ │ ├── theescape_finalassaultmusic.lua │ │ │ ├── theescape_finalmusic.lua │ │ │ ├── tpp │ │ │ └── thirdperson.lua │ │ │ ├── transportinzone.lua │ │ │ ├── utillib.lua │ │ │ ├── water_change_lua.lua │ │ │ ├── weapon.lua │ │ │ ├── weaponboostcolt1911.lua │ │ │ ├── weather │ │ │ ├── graphix_blizzard_particle.lua │ │ │ ├── graphix_rain_particle.lua │ │ │ └── graphix_snow_particle.lua │ │ │ ├── windoor.lua │ │ │ ├── windowlegacy.lua │ │ │ ├── winitem.lua │ │ │ └── winzone.lua │ └── Source │ │ ├── Common-File.cpp │ │ ├── Common-Fonts.cpp │ │ ├── Common-Images.cpp │ │ ├── Common-Input.cpp │ │ ├── Common-Keys.cpp │ │ ├── Common-Sounds.cpp │ │ ├── Common-Strings.cpp │ │ ├── Common.cpp │ │ ├── G-Entity.cpp │ │ ├── G-Gun.cpp │ │ ├── G-Lighting.cpp │ │ ├── M-AudioVolume.cpp │ │ ├── M-CharacterCreatorPlus.cpp │ │ ├── M-CharacterCreatorPlusTTS.cpp │ │ ├── M-CharacterKit.cpp │ │ ├── M-CharacterSound.cpp │ │ ├── M-ConstructionKit.cpp │ │ ├── M-ConstructionKitEdit.cpp │ │ ├── M-DAI.cpp │ │ ├── M-Debug.cpp │ │ ├── M-Decal.cpp │ │ ├── M-EBE.cpp │ │ ├── M-Entity.cpp │ │ ├── M-Explosion&Fire.cpp │ │ ├── M-Game.cpp │ │ ├── M-Grass.cpp │ │ ├── M-GridEdit.cpp │ │ ├── M-Gun.cpp │ │ ├── M-HUD.cpp │ │ ├── M-Importer.cpp │ │ ├── M-Interactive.cpp │ │ ├── M-LUA-Entity.cpp │ │ ├── M-LUA-General.cpp │ │ ├── M-LUA.cpp │ │ ├── M-Lighting.cpp │ │ ├── M-Lightmapping.cpp │ │ ├── M-MPPhoton.cpp │ │ ├── M-MPSteam.cpp │ │ ├── M-MapFile.cpp │ │ ├── M-Material.cpp │ │ ├── M-OBS.cpp │ │ ├── M-Panel.cpp │ │ ├── M-Particles.cpp │ │ ├── M-Physics.cpp │ │ ├── M-Postprocess.cpp │ │ ├── M-Ragdoll.cpp │ │ ├── M-RealSense.cpp │ │ ├── M-Sky.cpp │ │ ├── M-Sliders.cpp │ │ ├── M-Terrain.cpp │ │ ├── M-Titles.cpp │ │ ├── M-UndoSys-Object.cpp │ │ ├── M-UndoSys-Terrain.cpp │ │ ├── M-UndoSys.cpp │ │ ├── M-Visuals.cpp │ │ ├── M-Waypoint.cpp │ │ ├── M-Weapon.cpp │ │ ├── M-WelcomeSystem.cpp │ │ ├── M-Widget.cpp │ │ ├── MapEditor.cpp │ │ ├── Types.cpp │ │ ├── cStr.cpp │ │ ├── miniz.c │ │ ├── sha1.cpp │ │ └── sha2.cpp ├── GameGuruPreprocessor │ └── preprocessor-flags-classic.h ├── Guru-Lightmapper │ ├── GameGuruLightmapper.cpp │ ├── GameGuruLightmapper.h │ ├── Guru-Lightmapper.vcxproj │ ├── Guru-Lightmapper.vcxproj.filters │ ├── dbproexe.rc │ ├── icon2-db3.ico │ ├── macros.h │ ├── resource.h │ ├── stdafx.h │ └── x64 │ │ ├── Debug │ │ └── Guru-Lightmapper.vcxproj.FileListAbsolute.txt │ │ └── Release │ │ └── Guru-Lightmapper.vcxproj.FileListAbsolute.txt ├── Guru-MapEditor │ ├── DarkEXE.cpp │ ├── DarkEXE.h │ ├── DarkEXE.vcxproj │ ├── DarkEXE.vcxproj.filters │ ├── DarkEXE.vcxproj.lee.nvuser │ ├── DarkErrors.cpp │ ├── EXEBlock.cpp │ ├── EXEBlock.h │ ├── Encryptor.cpp │ ├── Encryptor.h │ ├── FBXExporter │ │ ├── FBXExporter.cpp │ │ ├── FBXExporter.h │ │ ├── Material.h │ │ ├── MathHelper.cpp │ │ ├── MathHelper.h │ │ ├── Utilities.cpp │ │ ├── Utilities.h │ │ └── Vertex.h │ ├── FileReader.cpp │ ├── FileReader.h │ ├── GameGuruEngine.h │ ├── GameGuruMain.cpp │ ├── GameGuruMain.h │ ├── dbproexe.rc │ ├── icon2-db3.ico │ ├── icon2-dbp.ico │ ├── macros.h │ ├── resource.h │ ├── resource.hm │ ├── reviewrequestreminder.ini │ ├── showannouncements.ini │ ├── stdafx.h │ └── x64 │ │ ├── Debug │ │ └── DarkEXE.vcxproj.FileListAbsolute.txt │ │ └── Release │ │ └── DarkEXE.vcxproj.FileListAbsolute.txt ├── SDK │ ├── BULLET │ │ └── bullet-2.81-rev2613 │ │ │ ├── lib │ │ │ ├── BulletCollision_vs2008_debug.lib │ │ │ ├── BulletDynamics_vs2008_debug.lib │ │ │ ├── BulletSoftBody_vs2008_debug.lib │ │ │ ├── ConvexDecomposition_vs2008_debug.lib │ │ │ ├── HACD_vs2008_debug.lib │ │ │ ├── LinearMath_vs2008_debug.lib │ │ │ └── OpenGLSupport_vs2008_debug.lib │ │ │ └── src │ │ │ ├── Bullet-C-Api.h │ │ │ ├── BulletCollision │ │ │ ├── BroadphaseCollision │ │ │ │ ├── btAxisSweep3.cpp │ │ │ │ ├── btAxisSweep3.h │ │ │ │ ├── btBroadphaseInterface.h │ │ │ │ ├── btBroadphaseProxy.cpp │ │ │ │ ├── btBroadphaseProxy.h │ │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ │ ├── btCollisionAlgorithm.h │ │ │ │ ├── btDbvt.cpp │ │ │ │ ├── btDbvt.h │ │ │ │ ├── btDbvtBroadphase.cpp │ │ │ │ ├── btDbvtBroadphase.h │ │ │ │ ├── btDispatcher.cpp │ │ │ │ ├── btDispatcher.h │ │ │ │ ├── btMultiSapBroadphase.cpp │ │ │ │ ├── btMultiSapBroadphase.h │ │ │ │ ├── btOverlappingPairCache.cpp │ │ │ │ ├── btOverlappingPairCache.h │ │ │ │ ├── btOverlappingPairCallback.h │ │ │ │ ├── btQuantizedBvh.cpp │ │ │ │ ├── btQuantizedBvh.h │ │ │ │ ├── btSimpleBroadphase.cpp │ │ │ │ └── btSimpleBroadphase.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CollisionDispatch │ │ │ │ ├── SphereTriangleDetector.cpp │ │ │ │ ├── SphereTriangleDetector.h │ │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ │ ├── btBoxBoxDetector.cpp │ │ │ │ ├── btBoxBoxDetector.h │ │ │ │ ├── btCollisionConfiguration.h │ │ │ │ ├── btCollisionCreateFunc.h │ │ │ │ ├── btCollisionDispatcher.cpp │ │ │ │ ├── btCollisionDispatcher.h │ │ │ │ ├── btCollisionObject.cpp │ │ │ │ ├── btCollisionObject.h │ │ │ │ ├── btCollisionObjectWrapper.h │ │ │ │ ├── btCollisionWorld.cpp │ │ │ │ ├── btCollisionWorld.h │ │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ │ ├── btGhostObject.cpp │ │ │ │ ├── btGhostObject.h │ │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ │ ├── btInternalEdgeUtility.h │ │ │ │ ├── btManifoldResult.cpp │ │ │ │ ├── btManifoldResult.h │ │ │ │ ├── btSimulationIslandManager.cpp │ │ │ │ ├── btSimulationIslandManager.h │ │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ │ ├── btUnionFind.cpp │ │ │ │ └── btUnionFind.h │ │ │ ├── CollisionShapes │ │ │ │ ├── btBox2dShape.cpp │ │ │ │ ├── btBox2dShape.h │ │ │ │ ├── btBoxShape.cpp │ │ │ │ ├── btBoxShape.h │ │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ │ ├── btCapsuleShape.cpp │ │ │ │ ├── btCapsuleShape.h │ │ │ │ ├── btCollisionMargin.h │ │ │ │ ├── btCollisionShape.cpp │ │ │ │ ├── btCollisionShape.h │ │ │ │ ├── btCompoundShape.cpp │ │ │ │ ├── btCompoundShape.h │ │ │ │ ├── btConcaveShape.cpp │ │ │ │ ├── btConcaveShape.h │ │ │ │ ├── btConeShape.cpp │ │ │ │ ├── btConeShape.h │ │ │ │ ├── btConvex2dShape.cpp │ │ │ │ ├── btConvex2dShape.h │ │ │ │ ├── btConvexHullShape.cpp │ │ │ │ ├── btConvexHullShape.h │ │ │ │ ├── btConvexInternalShape.cpp │ │ │ │ ├── btConvexInternalShape.h │ │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ │ ├── btConvexPointCloudShape.h │ │ │ │ ├── btConvexPolyhedron.cpp │ │ │ │ ├── btConvexPolyhedron.h │ │ │ │ ├── btConvexShape.cpp │ │ │ │ ├── btConvexShape.h │ │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ │ ├── btCylinderShape.cpp │ │ │ │ ├── btCylinderShape.h │ │ │ │ ├── btEmptyShape.cpp │ │ │ │ ├── btEmptyShape.h │ │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ │ ├── btMaterial.h │ │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ │ ├── btMinkowskiSumShape.h │ │ │ │ ├── btMultiSphereShape.cpp │ │ │ │ ├── btMultiSphereShape.h │ │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ │ ├── btOptimizedBvh.cpp │ │ │ │ ├── btOptimizedBvh.h │ │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ │ ├── btPolyhedralConvexShape.h │ │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ │ ├── btShapeHull.cpp │ │ │ │ ├── btShapeHull.h │ │ │ │ ├── btSphereShape.cpp │ │ │ │ ├── btSphereShape.h │ │ │ │ ├── btStaticPlaneShape.cpp │ │ │ │ ├── btStaticPlaneShape.h │ │ │ │ ├── btStridingMeshInterface.cpp │ │ │ │ ├── btStridingMeshInterface.h │ │ │ │ ├── btTetrahedronShape.cpp │ │ │ │ ├── btTetrahedronShape.h │ │ │ │ ├── btTriangleBuffer.cpp │ │ │ │ ├── btTriangleBuffer.h │ │ │ │ ├── btTriangleCallback.cpp │ │ │ │ ├── btTriangleCallback.h │ │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ │ ├── btTriangleInfoMap.h │ │ │ │ ├── btTriangleMesh.cpp │ │ │ │ ├── btTriangleMesh.h │ │ │ │ ├── btTriangleMeshShape.cpp │ │ │ │ ├── btTriangleMeshShape.h │ │ │ │ ├── btTriangleShape.h │ │ │ │ ├── btUniformScalingShape.cpp │ │ │ │ └── btUniformScalingShape.h │ │ │ ├── Doxyfile │ │ │ ├── Gimpact │ │ │ │ ├── btBoxCollision.h │ │ │ │ ├── btClipPolygon.h │ │ │ │ ├── btContactProcessing.cpp │ │ │ │ ├── btContactProcessing.h │ │ │ │ ├── btGImpactBvh.cpp │ │ │ │ ├── btGImpactBvh.h │ │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ │ ├── btGImpactMassUtil.h │ │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ │ ├── btGImpactShape.cpp │ │ │ │ ├── btGImpactShape.h │ │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ │ ├── btGenericPoolAllocator.h │ │ │ │ ├── btGeometryOperations.h │ │ │ │ ├── btQuantization.h │ │ │ │ ├── btTriangleShapeEx.cpp │ │ │ │ ├── btTriangleShapeEx.h │ │ │ │ ├── gim_array.h │ │ │ │ ├── gim_basic_geometry_operations.h │ │ │ │ ├── gim_bitset.h │ │ │ │ ├── gim_box_collision.h │ │ │ │ ├── gim_box_set.cpp │ │ │ │ ├── gim_box_set.h │ │ │ │ ├── gim_clip_polygon.h │ │ │ │ ├── gim_contact.cpp │ │ │ │ ├── gim_contact.h │ │ │ │ ├── gim_geom_types.h │ │ │ │ ├── gim_geometry.h │ │ │ │ ├── gim_hash_table.h │ │ │ │ ├── gim_linear_math.h │ │ │ │ ├── gim_math.h │ │ │ │ ├── gim_memory.cpp │ │ │ │ ├── gim_memory.h │ │ │ │ ├── gim_radixsort.h │ │ │ │ ├── gim_tri_collision.cpp │ │ │ │ └── gim_tri_collision.h │ │ │ ├── NarrowPhaseCollision │ │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ │ ├── btContinuousConvexCollision.h │ │ │ │ ├── btConvexCast.cpp │ │ │ │ ├── btConvexCast.h │ │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ │ ├── btGjkConvexCast.cpp │ │ │ │ ├── btGjkConvexCast.h │ │ │ │ ├── btGjkEpa2.cpp │ │ │ │ ├── btGjkEpa2.h │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ │ ├── btGjkPairDetector.cpp │ │ │ │ ├── btGjkPairDetector.h │ │ │ │ ├── btManifoldPoint.h │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ │ ├── btPersistentManifold.cpp │ │ │ │ ├── btPersistentManifold.h │ │ │ │ ├── btPointCollector.h │ │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ │ ├── btPolyhedralContactClipping.h │ │ │ │ ├── btRaycastCallback.cpp │ │ │ │ ├── btRaycastCallback.h │ │ │ │ ├── btSimplexSolverInterface.h │ │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ │ ├── btSubSimplexConvexCast.h │ │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ │ └── btVoronoiSimplexSolver.h │ │ │ └── premake4.lua │ │ │ ├── BulletDynamics │ │ │ ├── CMakeLists.txt │ │ │ ├── Character │ │ │ │ ├── btCharacterControllerInterface.h │ │ │ │ ├── btKinematicCharacterController.cpp │ │ │ │ └── btKinematicCharacterController.h │ │ │ ├── ConstraintSolver │ │ │ │ ├── btConeTwistConstraint.cpp │ │ │ │ ├── btConeTwistConstraint.h │ │ │ │ ├── btConstraintSolver.h │ │ │ │ ├── btContactConstraint.cpp │ │ │ │ ├── btContactConstraint.h │ │ │ │ ├── btContactSolverInfo.h │ │ │ │ ├── btFixedConstraint.cpp │ │ │ │ ├── btFixedConstraint.h │ │ │ │ ├── btGearConstraint.cpp │ │ │ │ ├── btGearConstraint.h │ │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ │ ├── btGeneric6DofConstraint.h │ │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ │ ├── btHinge2Constraint.cpp │ │ │ │ ├── btHinge2Constraint.h │ │ │ │ ├── btHingeConstraint.cpp │ │ │ │ ├── btHingeConstraint.h │ │ │ │ ├── btJacobianEntry.h │ │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ │ ├── btPoint2PointConstraint.h │ │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ │ ├── btSliderConstraint.cpp │ │ │ │ ├── btSliderConstraint.h │ │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ │ ├── btSolve2LinearConstraint.h │ │ │ │ ├── btSolverBody.h │ │ │ │ ├── btSolverConstraint.h │ │ │ │ ├── btTypedConstraint.cpp │ │ │ │ ├── btTypedConstraint.h │ │ │ │ ├── btUniversalConstraint.cpp │ │ │ │ └── btUniversalConstraint.h │ │ │ ├── Dynamics │ │ │ │ ├── Bullet-C-API.cpp │ │ │ │ ├── btActionInterface.h │ │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ │ ├── btDynamicsWorld.h │ │ │ │ ├── btRigidBody.cpp │ │ │ │ ├── btRigidBody.h │ │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ │ └── btSimpleDynamicsWorld.h │ │ │ ├── Vehicle │ │ │ │ ├── btRaycastVehicle.cpp │ │ │ │ ├── btRaycastVehicle.h │ │ │ │ ├── btVehicleRaycaster.h │ │ │ │ ├── btWheelInfo.cpp │ │ │ │ └── btWheelInfo.h │ │ │ └── premake4.lua │ │ │ ├── BulletMultiThreaded │ │ │ ├── CMakeLists.txt │ │ │ ├── GpuSoftBodySolvers │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DX11 │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── HLSL │ │ │ │ │ │ ├── ApplyForces.hlsl │ │ │ │ │ │ ├── ComputeBounds.hlsl │ │ │ │ │ │ ├── Integrate.hlsl │ │ │ │ │ │ ├── OutputToVertexArray.hlsl │ │ │ │ │ │ ├── PrepareLinks.hlsl │ │ │ │ │ │ ├── SolvePositions.hlsl │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.hlsl │ │ │ │ │ │ ├── UpdateConstants.hlsl │ │ │ │ │ │ ├── UpdateNodes.hlsl │ │ │ │ │ │ ├── UpdateNormals.hlsl │ │ │ │ │ │ ├── UpdatePositions.hlsl │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.hlsl │ │ │ │ │ │ ├── VSolveLinks.hlsl │ │ │ │ │ │ ├── solveCollisionsAndUpdateVelocities.hlsl │ │ │ │ │ │ └── solveCollisionsAndUpdateVelocitiesSIMDBatched.hlsl │ │ │ │ │ ├── btSoftBodySolverBuffer_DX11.h │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11.h │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11SIMDAware.h │ │ │ │ │ ├── btSoftBodySolverTriangleData_DX11.h │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_DX11.h │ │ │ │ │ ├── btSoftBodySolverVertexData_DX11.h │ │ │ │ │ ├── btSoftBodySolver_DX11.cpp │ │ │ │ │ ├── btSoftBodySolver_DX11.h │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.cpp │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.h │ │ │ │ │ └── premake4.lua │ │ │ │ ├── OpenCL │ │ │ │ │ ├── AMD │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── Apple │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Intel │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── MiniCL │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── MiniCLTaskWrap.cpp │ │ │ │ │ ├── NVidia │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── OpenCLC10 │ │ │ │ │ │ ├── ApplyForces.cl │ │ │ │ │ │ ├── ComputeBounds.cl │ │ │ │ │ │ ├── Integrate.cl │ │ │ │ │ │ ├── OutputToVertexArray.cl │ │ │ │ │ │ ├── PrepareLinks.cl │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl │ │ │ │ │ │ ├── SolvePositions.cl │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.cl │ │ │ │ │ │ ├── UpdateConstants.cl │ │ │ │ │ │ ├── UpdateFixedVertexPositions.cl │ │ │ │ │ │ ├── UpdateNodes.cl │ │ │ │ │ │ ├── UpdateNormals.cl │ │ │ │ │ │ ├── UpdatePositions.cl │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.cl │ │ │ │ │ │ └── VSolveLinks.cl │ │ │ │ │ ├── btSoftBodySolverBuffer_OpenCL.h │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCL.h │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCLSIMDAware.h │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.cpp │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.h │ │ │ │ │ ├── btSoftBodySolverTriangleData_OpenCL.h │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_OpenGL.h │ │ │ │ │ ├── btSoftBodySolverVertexData_OpenCL.h │ │ │ │ │ ├── btSoftBodySolver_OpenCL.cpp │ │ │ │ │ ├── btSoftBodySolver_OpenCL.h │ │ │ │ │ ├── btSoftBodySolver_OpenCLSIMDAware.cpp │ │ │ │ │ └── btSoftBodySolver_OpenCLSIMDAware.h │ │ │ │ └── Shared │ │ │ │ │ └── btSoftBodySolverData.h │ │ │ ├── HeapManager.h │ │ │ ├── PlatformDefinitions.h │ │ │ ├── PosixThreadSupport.cpp │ │ │ ├── PosixThreadSupport.h │ │ │ ├── PpuAddressSpace.h │ │ │ ├── SequentialThreadSupport.cpp │ │ │ ├── SequentialThreadSupport.h │ │ │ ├── SpuCollisionObjectWrapper.cpp │ │ │ ├── SpuCollisionObjectWrapper.h │ │ │ ├── SpuCollisionTaskProcess.cpp │ │ │ ├── SpuCollisionTaskProcess.h │ │ │ ├── SpuContactManifoldCollisionAlgorithm.cpp │ │ │ ├── SpuContactManifoldCollisionAlgorithm.h │ │ │ ├── SpuDoubleBuffer.h │ │ │ ├── SpuFakeDma.cpp │ │ │ ├── SpuFakeDma.h │ │ │ ├── SpuGatheringCollisionDispatcher.cpp │ │ │ ├── SpuGatheringCollisionDispatcher.h │ │ │ ├── SpuLibspe2Support.cpp │ │ │ ├── SpuLibspe2Support.h │ │ │ ├── SpuNarrowPhaseCollisionTask │ │ │ │ ├── Box.h │ │ │ │ ├── SpuCollisionShapes.cpp │ │ │ │ ├── SpuCollisionShapes.h │ │ │ │ ├── SpuContactResult.cpp │ │ │ │ ├── SpuContactResult.h │ │ │ │ ├── SpuConvexPenetrationDepthSolver.h │ │ │ │ ├── SpuGatheringCollisionTask.cpp │ │ │ │ ├── SpuGatheringCollisionTask.h │ │ │ │ ├── SpuLocalSupport.h │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.cpp │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.h │ │ │ │ ├── SpuPreferredPenetrationDirections.h │ │ │ │ ├── boxBoxDistance.cpp │ │ │ │ ├── boxBoxDistance.h │ │ │ │ └── readme.txt │ │ │ ├── SpuSampleTask │ │ │ │ ├── SpuSampleTask.cpp │ │ │ │ ├── SpuSampleTask.h │ │ │ │ └── readme.txt │ │ │ ├── SpuSampleTaskProcess.cpp │ │ │ ├── SpuSampleTaskProcess.h │ │ │ ├── SpuSync.h │ │ │ ├── TrbDynBody.h │ │ │ ├── TrbStateVec.h │ │ │ ├── Win32ThreadSupport.cpp │ │ │ ├── Win32ThreadSupport.h │ │ │ ├── btGpu3DGridBroadphase.cpp │ │ │ ├── btGpu3DGridBroadphase.h │ │ │ ├── btGpu3DGridBroadphaseSharedCode.h │ │ │ ├── btGpu3DGridBroadphaseSharedDefs.h │ │ │ ├── btGpu3DGridBroadphaseSharedTypes.h │ │ │ ├── btGpuDefines.h │ │ │ ├── btGpuUtilsSharedCode.h │ │ │ ├── btGpuUtilsSharedDefs.h │ │ │ ├── btParallelConstraintSolver.cpp │ │ │ ├── btParallelConstraintSolver.h │ │ │ ├── btThreadSupportInterface.cpp │ │ │ ├── btThreadSupportInterface.h │ │ │ └── vectormath2bullet.h │ │ │ ├── BulletSoftBody │ │ │ ├── CMakeLists.txt │ │ │ ├── btDefaultSoftBodySolver.cpp │ │ │ ├── btDefaultSoftBodySolver.h │ │ │ ├── btSoftBody.cpp │ │ │ ├── btSoftBody.h │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ │ ├── btSoftBodyData.h │ │ │ ├── btSoftBodyHelpers.cpp │ │ │ ├── btSoftBodyHelpers.h │ │ │ ├── btSoftBodyInternals.h │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ │ ├── btSoftBodySolverVertexBuffer.h │ │ │ ├── btSoftBodySolvers.h │ │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ │ ├── btSoftRigidDynamicsWorld.h │ │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ │ ├── btSparseSDF.h │ │ │ └── premake4.lua │ │ │ ├── LinearMath │ │ │ ├── CMakeLists.txt │ │ │ ├── btAabbUtil2.h │ │ │ ├── btAlignedAllocator.cpp │ │ │ ├── btAlignedAllocator.h │ │ │ ├── btAlignedObjectArray.h │ │ │ ├── btConvexHull.cpp │ │ │ ├── btConvexHull.h │ │ │ ├── btConvexHullComputer.cpp │ │ │ ├── btConvexHullComputer.h │ │ │ ├── btDefaultMotionState.h │ │ │ ├── btGeometryUtil.cpp │ │ │ ├── btGeometryUtil.h │ │ │ ├── btGrahamScan2dConvexHull.h │ │ │ ├── btHashMap.h │ │ │ ├── btIDebugDraw.h │ │ │ ├── btList.h │ │ │ ├── btMatrix3x3.h │ │ │ ├── btMinMax.h │ │ │ ├── btMotionState.h │ │ │ ├── btPolarDecomposition.cpp │ │ │ ├── btPolarDecomposition.h │ │ │ ├── btPoolAllocator.h │ │ │ ├── btQuadWord.h │ │ │ ├── btQuaternion.h │ │ │ ├── btQuickprof.cpp │ │ │ ├── btQuickprof.h │ │ │ ├── btRandom.h │ │ │ ├── btScalar.h │ │ │ ├── btSerializer.cpp │ │ │ ├── btSerializer.h │ │ │ ├── btStackAlloc.h │ │ │ ├── btTransform.h │ │ │ ├── btTransformUtil.h │ │ │ ├── btVector3.cpp │ │ │ ├── btVector3.h │ │ │ └── premake4.lua │ │ │ ├── MiniCL │ │ │ ├── CMakeLists.txt │ │ │ ├── MiniCL.cpp │ │ │ ├── MiniCLTask │ │ │ │ ├── MiniCLTask.cpp │ │ │ │ └── MiniCLTask.h │ │ │ ├── MiniCLTaskScheduler.cpp │ │ │ ├── MiniCLTaskScheduler.h │ │ │ ├── cl.h │ │ │ ├── cl_MiniCL_Defs.h │ │ │ ├── cl_gl.h │ │ │ └── cl_platform.h │ │ │ ├── btBulletCollisionCommon.h │ │ │ ├── btBulletDynamicsCommon.h │ │ │ └── vectormath │ │ │ ├── neon │ │ │ ├── boolInVec.h │ │ │ ├── floatInVec.h │ │ │ ├── mat_aos.h │ │ │ ├── quat_aos.h │ │ │ ├── vec_aos.h │ │ │ └── vectormath_aos.h │ │ │ ├── scalar │ │ │ ├── boolInVec.h │ │ │ ├── floatInVec.h │ │ │ ├── mat_aos.h │ │ │ ├── quat_aos.h │ │ │ ├── vec_aos.h │ │ │ └── vectormath_aos.h │ │ │ ├── sse │ │ │ ├── boolInVec.h │ │ │ ├── floatInVec.h │ │ │ ├── mat_aos.h │ │ │ ├── quat_aos.h │ │ │ ├── vec_aos.h │ │ │ ├── vecidx_aos.h │ │ │ └── vectormath_aos.h │ │ │ └── vmInclude.h │ ├── BaseClasses │ │ ├── STRMBASE.lib │ │ ├── amextra.h │ │ ├── amfilter.h │ │ ├── cache.h │ │ ├── combase.h │ │ ├── cprop.h │ │ ├── ctlutil.h │ │ ├── d3dkmt.h │ │ ├── ddmm.h │ │ ├── dllsetup.h │ │ ├── dsschedule.h │ │ ├── fourcc.h │ │ ├── measure.h │ │ ├── msgthrd.h │ │ ├── mtype.h │ │ ├── outputq.h │ │ ├── pstream.h │ │ ├── pullpin.h │ │ ├── refclock.h │ │ ├── reftime.h │ │ ├── renbase.h │ │ ├── seekpt.h │ │ ├── source.h │ │ ├── streams.h │ │ ├── strmbasd.lib │ │ ├── strmctl.h │ │ ├── sysclock.h │ │ ├── transfrm.h │ │ ├── transip.h │ │ ├── videoctl.h │ │ ├── vtrans.h │ │ ├── winctrl.h │ │ ├── winutil.h │ │ ├── wxdebug.h │ │ ├── wxlist.h │ │ └── wxutil.h │ ├── DB3 │ │ ├── DB3.h │ │ ├── DB3Array.h │ │ ├── DB3Dict.h │ │ ├── DB3Factory.h │ │ ├── DB3List.h │ │ ├── DB3Math.h │ │ ├── DB3Task.h │ │ └── DB3Time.h │ ├── DirectX │ │ ├── Effect11 │ │ │ ├── Bin │ │ │ │ └── Desktop_2022 │ │ │ │ │ └── x64 │ │ │ │ │ └── Debug │ │ │ │ │ ├── Effects11.lib │ │ │ │ │ └── Effects11_2022.vcxproj.FileListAbsolute.txt │ │ │ ├── Binary │ │ │ │ ├── EffectBinaryFormat.h │ │ │ │ ├── EffectStateBase11.h │ │ │ │ ├── EffectStates11.h │ │ │ │ └── SOParser.h │ │ │ ├── Effect.h │ │ │ ├── EffectAPI.cpp │ │ │ ├── EffectLoad.cpp │ │ │ ├── EffectLoad.h │ │ │ ├── EffectNonRuntime.cpp │ │ │ ├── EffectReflection.cpp │ │ │ ├── EffectRuntime.cpp │ │ │ ├── EffectVariable.inl │ │ │ ├── Effects11_2022.sln │ │ │ ├── Effects11_2022.vcxproj │ │ │ ├── Effects11_2022.vcxproj.filters │ │ │ ├── IUnknownImp.h │ │ │ ├── LICENSE │ │ │ ├── ReadMe.txt │ │ │ ├── d3dxGlobal.cpp │ │ │ ├── inc │ │ │ │ ├── d3dx11effect.h │ │ │ │ └── d3dxGlobal.h │ │ │ └── pchfx.h │ │ ├── Include │ │ │ ├── D3DX11.h │ │ │ ├── D3DX11async.h │ │ │ ├── D3DX11core.h │ │ │ ├── D3DX11tex.h │ │ │ ├── audiodefs.h │ │ │ ├── comdecl.h │ │ │ ├── d3dx9.h │ │ │ ├── d3dx9anim.h │ │ │ ├── d3dx9core.h │ │ │ ├── d3dx9effect.h │ │ │ ├── d3dx9math.h │ │ │ ├── d3dx9math.inl │ │ │ ├── d3dx9mesh.h │ │ │ ├── d3dx9shader.h │ │ │ ├── d3dx9shape.h │ │ │ ├── d3dx9tex.h │ │ │ ├── d3dx9xof.h │ │ │ ├── xma2defs.h │ │ │ ├── xnamath.h │ │ │ ├── xnamathconvert.inl │ │ │ ├── xnamathmatrix.inl │ │ │ ├── xnamathmisc.inl │ │ │ └── xnamathvector.inl │ │ ├── K3D_Matrix.h │ │ ├── K3D_Vector3D.h │ │ ├── Lib │ │ │ └── x64 │ │ │ │ ├── D3DCSX.lib │ │ │ │ ├── D3DCSXd.lib │ │ │ │ ├── DxErr.lib │ │ │ │ ├── X3DAudio.lib │ │ │ │ ├── XAPOFX.lib │ │ │ │ ├── XInput.lib │ │ │ │ ├── d2d1.lib │ │ │ │ ├── d3d10.lib │ │ │ │ ├── d3d10_1.lib │ │ │ │ ├── d3d11.lib │ │ │ │ ├── d3d9.lib │ │ │ │ ├── d3dcompiler(old43).lib │ │ │ │ ├── d3dx10.lib │ │ │ │ ├── d3dx10d.lib │ │ │ │ ├── d3dx11.lib │ │ │ │ ├── d3dx11d.lib │ │ │ │ ├── d3dx9.lib │ │ │ │ ├── d3dx9d.lib │ │ │ │ ├── d3dxof.lib │ │ │ │ ├── dinput8.lib │ │ │ │ ├── dsound.lib │ │ │ │ ├── dwrite.lib │ │ │ │ ├── dxgi.lib │ │ │ │ ├── dxguid.lib │ │ │ │ ├── xapobase.lib │ │ │ │ └── xapobased.lib │ │ ├── d3dx11effect.h │ │ └── directx-macros.cpp │ ├── DirectXTex │ │ ├── DDSTextureLoader │ │ │ ├── DDSTextureLoader.cpp │ │ │ ├── DDSTextureLoader.h │ │ │ ├── DDSTextureLoader12.cpp │ │ │ └── DDSTextureLoader12.h │ │ ├── DDSView │ │ │ ├── DDSView.rc │ │ │ ├── ddsview.cpp │ │ │ ├── ddsview.fx │ │ │ ├── directx.ico │ │ │ ├── hlsl.cmd │ │ │ └── shaders │ │ │ │ ├── ps1D.h │ │ │ │ ├── ps1Darray.h │ │ │ │ ├── ps2D.h │ │ │ │ ├── ps2Darray.h │ │ │ │ ├── ps3D.h │ │ │ │ ├── psCube.h │ │ │ │ └── vs.h │ │ ├── DirectXTex │ │ │ ├── BC.cpp │ │ │ ├── BC.h │ │ │ ├── BC4BC5.cpp │ │ │ ├── BC6HBC7.cpp │ │ │ ├── BCDirectCompute.cpp │ │ │ ├── BCDirectCompute.h │ │ │ ├── Bin │ │ │ │ └── Desktop_2022 │ │ │ │ │ └── x64 │ │ │ │ │ └── Debug │ │ │ │ │ ├── DirectXTex.lib │ │ │ │ │ └── DirectXTex_Desktop_2022.vcxproj.FileListAbsolute.txt │ │ │ ├── DDS.h │ │ │ ├── DirectXTex.h │ │ │ ├── DirectXTex.inl │ │ │ ├── DirectXTexCompress.cpp │ │ │ ├── DirectXTexCompressGPU.cpp │ │ │ ├── DirectXTexConvert.cpp │ │ │ ├── DirectXTexD3D11.cpp │ │ │ ├── DirectXTexD3D12.cpp │ │ │ ├── DirectXTexDDS.cpp │ │ │ ├── DirectXTexFlipRotate.cpp │ │ │ ├── DirectXTexHDR.cpp │ │ │ ├── DirectXTexImage.cpp │ │ │ ├── DirectXTexMipmaps.cpp │ │ │ ├── DirectXTexMisc.cpp │ │ │ ├── DirectXTexNormalMaps.cpp │ │ │ ├── DirectXTexP.h │ │ │ ├── DirectXTexPMAlpha.cpp │ │ │ ├── DirectXTexResize.cpp │ │ │ ├── DirectXTexTGA.cpp │ │ │ ├── DirectXTexUtil.cpp │ │ │ ├── DirectXTexWIC.cpp │ │ │ ├── DirectXTex_Desktop_2022.vcxproj │ │ │ ├── DirectXTex_Desktop_2022.vcxproj.filters │ │ │ ├── Filters.h │ │ │ ├── Shaders │ │ │ │ ├── BC6HEncode.hlsl │ │ │ │ ├── BC7Encode.hlsl │ │ │ │ ├── CompileShaders.cmd │ │ │ │ └── Compiled │ │ │ │ │ ├── BC6HEncode_EncodeBlockCS.inc │ │ │ │ │ ├── BC6HEncode_TryModeG10CS.inc │ │ │ │ │ ├── BC6HEncode_TryModeLE10CS.inc │ │ │ │ │ ├── BC7Encode_EncodeBlockCS.inc │ │ │ │ │ ├── BC7Encode_TryMode02CS.inc │ │ │ │ │ ├── BC7Encode_TryMode137CS.inc │ │ │ │ │ └── BC7Encode_TryMode456CS.inc │ │ │ ├── d3dx12.h │ │ │ └── scoped.h │ │ ├── DirectXTex_Desktop_2022.sln │ │ ├── LICENSE │ │ ├── ReadMe.txt │ │ ├── ScreenGrab │ │ │ ├── ScreenGrab.cpp │ │ │ ├── ScreenGrab.h │ │ │ ├── ScreenGrab12.cpp │ │ │ └── ScreenGrab12.h │ │ ├── Texassemble │ │ │ ├── directx.ico │ │ │ ├── texassemble.cpp │ │ │ └── texassemble.rc │ │ ├── Texconv │ │ │ ├── Texconv.rc │ │ │ ├── directx.ico │ │ │ └── texconv.cpp │ │ ├── Texdiag │ │ │ ├── directx.ico │ │ │ ├── texdiag.cpp │ │ │ └── texdiag.rc │ │ └── WICTextureLoader │ │ │ ├── WICTextureLoader.cpp │ │ │ ├── WICTextureLoader.h │ │ │ ├── WICTextureLoader12.cpp │ │ │ └── WICTextureLoader12.h │ ├── NVAPI │ │ ├── NvApiDriverSettings.c │ │ ├── NvApiDriverSettings.h │ │ ├── nvapi.h │ │ └── x86 │ │ │ └── nvapi.lib │ ├── OGG │ │ ├── include │ │ │ ├── ogg │ │ │ │ ├── config_types.h.in │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ ├── lib │ │ │ ├── ogg_static.lib │ │ │ ├── vorbis_static.lib │ │ │ └── vorbisfile_static.lib │ │ ├── lib64 │ │ │ └── Debug │ │ │ │ ├── ogg_static.lib │ │ │ │ ├── vorbis_static.lib │ │ │ │ └── vorbisfile_static.lib │ │ ├── libogg │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── aclocal.m4 │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── libogg.spec │ │ │ ├── libogg.spec.in │ │ │ ├── ltmain.sh │ │ │ ├── m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ ├── missing │ │ │ ├── ogg-uninstalled.pc.in │ │ │ ├── ogg.m4 │ │ │ ├── ogg.pc.in │ │ │ ├── src │ │ │ │ ├── bitwise.c │ │ │ │ ├── crctable.h │ │ │ │ └── framing.c │ │ │ └── win32 │ │ │ │ ├── VS2022 │ │ │ │ ├── libogg.vcxproj │ │ │ │ ├── libogg.vcxproj.filters │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── libogg.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── libogg.vcxproj.FileListAbsolute.txt │ │ │ │ └── ogg.def │ │ ├── libvorbis │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── include │ │ │ │ └── vorbis │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ └── vorbisfile.h │ │ │ ├── install-sh │ │ │ ├── lib │ │ │ │ ├── analysis.c │ │ │ │ ├── backends.h │ │ │ │ ├── barkmel.c │ │ │ │ ├── bitrate.c │ │ │ │ ├── bitrate.h │ │ │ │ ├── block.c │ │ │ │ ├── books │ │ │ │ │ ├── coupled │ │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ │ └── res_books_stereo.h │ │ │ │ │ ├── floor │ │ │ │ │ │ └── floor_books.h │ │ │ │ │ └── uncoupled │ │ │ │ │ │ └── res_books_uncoupled.h │ │ │ │ ├── codebook.c │ │ │ │ ├── codebook.h │ │ │ │ ├── codec_internal.h │ │ │ │ ├── envelope.c │ │ │ │ ├── envelope.h │ │ │ │ ├── floor0.c │ │ │ │ ├── floor1.c │ │ │ │ ├── highlevel.h │ │ │ │ ├── info.c │ │ │ │ ├── lookup.c │ │ │ │ ├── lookup.h │ │ │ │ ├── lookup_data.h │ │ │ │ ├── lookups.pl │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── lsp.c │ │ │ │ ├── lsp.h │ │ │ │ ├── mapping0.c │ │ │ │ ├── masking.h │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── misc.h │ │ │ │ ├── modes │ │ │ │ │ ├── floor_all.h │ │ │ │ │ ├── psych_11.h │ │ │ │ │ ├── psych_16.h │ │ │ │ │ ├── psych_44.h │ │ │ │ │ ├── psych_8.h │ │ │ │ │ ├── residue_16.h │ │ │ │ │ ├── residue_44.h │ │ │ │ │ ├── residue_44p51.h │ │ │ │ │ ├── residue_44u.h │ │ │ │ │ ├── residue_8.h │ │ │ │ │ ├── setup_11.h │ │ │ │ │ ├── setup_16.h │ │ │ │ │ ├── setup_22.h │ │ │ │ │ ├── setup_32.h │ │ │ │ │ ├── setup_44.h │ │ │ │ │ ├── setup_44p51.h │ │ │ │ │ ├── setup_44u.h │ │ │ │ │ ├── setup_8.h │ │ │ │ │ └── setup_X.h │ │ │ │ ├── os.h │ │ │ │ ├── psy.c │ │ │ │ ├── psy.h │ │ │ │ ├── psytune.c │ │ │ │ ├── registry.c │ │ │ │ ├── registry.h │ │ │ │ ├── res0.c │ │ │ │ ├── scales.h │ │ │ │ ├── sharedbook.c │ │ │ │ ├── smallft.c │ │ │ │ ├── smallft.h │ │ │ │ ├── synthesis.c │ │ │ │ ├── tone.c │ │ │ │ ├── vorbisenc.c │ │ │ │ ├── vorbisfile.c │ │ │ │ ├── window.c │ │ │ │ └── window.h │ │ │ ├── libvorbis.spec │ │ │ ├── libvorbis.spec.in │ │ │ ├── ltmain.sh │ │ │ ├── m4 │ │ │ │ ├── add_cflags.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ ├── ogg.m4 │ │ │ │ └── pkg.m4 │ │ │ ├── missing │ │ │ ├── test │ │ │ │ ├── test.c │ │ │ │ ├── util.c │ │ │ │ ├── util.h │ │ │ │ ├── write_read.c │ │ │ │ └── write_read.h │ │ │ ├── vorbis-uninstalled.pc.in │ │ │ ├── vorbis.m4 │ │ │ ├── vorbis.pc.in │ │ │ ├── vorbisenc-uninstalled.pc.in │ │ │ ├── vorbisenc.pc.in │ │ │ ├── vorbisfile-uninstalled.pc.in │ │ │ ├── vorbisfile.pc.in │ │ │ ├── vq │ │ │ │ ├── 16.vqs │ │ │ │ ├── 16u.vqs │ │ │ │ ├── 44c-1.vqs │ │ │ │ ├── 44c0.vqs │ │ │ │ ├── 44c1.vqs │ │ │ │ ├── 44c2.vqs │ │ │ │ ├── 44c3.vqs │ │ │ │ ├── 44c4.vqs │ │ │ │ ├── 44c5.vqs │ │ │ │ ├── 44c6.vqs │ │ │ │ ├── 44c7.vqs │ │ │ │ ├── 44c8.vqs │ │ │ │ ├── 44c9.vqs │ │ │ │ ├── 44p-1.vqs │ │ │ │ ├── 44p0.vqs │ │ │ │ ├── 44p1.vqs │ │ │ │ ├── 44p2.vqs │ │ │ │ ├── 44p3.vqs │ │ │ │ ├── 44p4.vqs │ │ │ │ ├── 44p5.vqs │ │ │ │ ├── 44p6.vqs │ │ │ │ ├── 44p7.vqs │ │ │ │ ├── 44p8.vqs │ │ │ │ ├── 44p9.vqs │ │ │ │ ├── 44u0.vqs │ │ │ │ ├── 44u1.vqs │ │ │ │ ├── 44u2.vqs │ │ │ │ ├── 44u3.vqs │ │ │ │ ├── 44u4.vqs │ │ │ │ ├── 44u5.vqs │ │ │ │ ├── 44u6.vqs │ │ │ │ ├── 44u7.vqs │ │ │ │ ├── 44u8.vqs │ │ │ │ ├── 44u9.vqs │ │ │ │ ├── 8.vqs │ │ │ │ ├── 8u.vqs │ │ │ │ ├── bookutil.c │ │ │ │ ├── bookutil.h │ │ │ │ ├── distribution.c │ │ │ │ ├── floor_11.vqs │ │ │ │ ├── floor_22.vqs │ │ │ │ ├── floor_44.vqs │ │ │ │ ├── huffbuild.c │ │ │ │ ├── latticebuild.c │ │ │ │ ├── latticetune.c │ │ │ │ ├── localcodebook.h │ │ │ │ ├── make_floor_books.pl │ │ │ │ ├── make_residue_books.pl │ │ │ │ ├── metrics.c │ │ │ │ ├── vqgen.c │ │ │ │ └── vqgen.h │ │ │ └── win32 │ │ │ │ ├── VS2022 │ │ │ │ ├── README │ │ │ │ ├── libogg.props │ │ │ │ ├── libvorbis │ │ │ │ │ ├── libvorbis_static.vcxproj │ │ │ │ │ └── x64 │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── libvorbis_static.vcxproj.FileListAbsolute.txt │ │ │ │ │ │ └── Release │ │ │ │ │ │ └── libvorbis_static.vcxproj.FileListAbsolute.txt │ │ │ │ └── libvorbisfile │ │ │ │ │ ├── libvorbisfile_static.vcxproj │ │ │ │ │ └── x64 │ │ │ │ │ ├── Debug │ │ │ │ │ └── libvorbisfile_static.vcxproj.FileListAbsolute.txt │ │ │ │ │ └── Release │ │ │ │ │ └── libvorbisfile_static.vcxproj.FileListAbsolute.txt │ │ │ │ ├── vorbis.def │ │ │ │ └── vorbisfile.def │ │ └── ogg_vorbis_static.sln │ ├── OpenVR │ │ ├── bin │ │ │ ├── win32 │ │ │ │ └── openvr_api.dll │ │ │ └── win64 │ │ │ │ └── openvr_api.dll │ │ ├── headers │ │ │ ├── openvr.h │ │ │ ├── openvr_api.cs │ │ │ ├── openvr_api.json │ │ │ ├── openvr_capi.h │ │ │ └── openvr_driver.h │ │ └── lib │ │ │ ├── win32 │ │ │ └── openvr_api.lib │ │ │ └── win64 │ │ │ └── openvr_api.lib │ ├── OpenXR │ │ ├── OpenXR_runtime.json │ │ ├── donotusejsonnow(useregistry) │ │ │ ├── OpenXR_runtime (Original).json │ │ │ ├── OpenXR_runtime (Steam 32bit).json │ │ │ ├── OpenXR_runtime (Steam 64bit).json │ │ │ └── OpenXR_runtime.json │ │ ├── include │ │ │ ├── openxr.h │ │ │ └── openxr │ │ │ │ ├── openxr.h │ │ │ │ ├── openxr_platform.h │ │ │ │ ├── openxr_platform_defines.h │ │ │ │ └── openxr_reflection.h │ │ ├── lib │ │ │ ├── Debug │ │ │ │ └── openxr_loader.lib │ │ │ └── Release │ │ │ │ └── openxr_loader.lib │ │ ├── lib64 │ │ │ ├── Debug │ │ │ │ └── openxr_loader.lib │ │ │ └── Release │ │ │ │ └── openxr_loader.lib │ │ └── src │ │ │ └── openxr.cpp │ ├── PhotonSDK │ │ ├── Common-cpp │ │ │ ├── inc │ │ │ │ ├── ANSIString.h │ │ │ │ ├── Base.h │ │ │ │ ├── BaseCharString.h │ │ │ │ ├── BaseListener.h │ │ │ │ ├── Common.h │ │ │ │ ├── CustomType.h │ │ │ │ ├── CustomTypeBase.h │ │ │ │ ├── CustomTypeFactory.h │ │ │ │ ├── DeSerializer.h │ │ │ │ ├── Dictionary.h │ │ │ │ ├── DictionaryBase.h │ │ │ │ ├── EGTime.h │ │ │ │ ├── Enums │ │ │ │ │ ├── DebugLevel.h │ │ │ │ │ └── TypeCode.h │ │ │ │ ├── Hashtable.h │ │ │ │ ├── Helpers │ │ │ │ │ ├── ArrayLengthType.h │ │ │ │ │ ├── CompileTimeAssertTrue.h │ │ │ │ │ ├── ConfirmAllowed.h │ │ │ │ │ ├── ConfirmAllowedKey.h │ │ │ │ │ ├── CustomTypeCallbackWrapper.h │ │ │ │ │ ├── Data.h │ │ │ │ │ ├── DeSerializerImplementation.h │ │ │ │ │ ├── ElementAccessor.h │ │ │ │ │ ├── EnableIf.h │ │ │ │ │ ├── EndianCorrectCast.h │ │ │ │ │ ├── EndianCorrectCastImplementation.h │ │ │ │ │ ├── IsDerivedFrom.h │ │ │ │ │ ├── IsPrimitiveType.h │ │ │ │ │ ├── IsSame.h │ │ │ │ │ ├── KeyToObject.h │ │ │ │ │ ├── Lockguard.h │ │ │ │ │ ├── MathHelper.h │ │ │ │ │ ├── ObjectToStringConverter.h │ │ │ │ │ ├── ObjectToStringConverterBase.h │ │ │ │ │ ├── PrimitiveToStringConverter.h │ │ │ │ │ ├── PrimitiveToStringConverterBase.h │ │ │ │ │ ├── RemoveConst.h │ │ │ │ │ ├── RemovePointer.h │ │ │ │ │ ├── SerializerImplementation.h │ │ │ │ │ ├── SmartPointers │ │ │ │ │ │ ├── SharedPointer.h │ │ │ │ │ │ ├── SharedPointerBase.h │ │ │ │ │ │ ├── SmartPointerBase.h │ │ │ │ │ │ ├── SmartPointerInterface.h │ │ │ │ │ │ ├── UniquePointer.h │ │ │ │ │ │ └── UniquePointerBase.h │ │ │ │ │ ├── Spinlock.h │ │ │ │ │ ├── Thread.h │ │ │ │ │ ├── ToStringImplementation.h │ │ │ │ │ ├── TypeName.h │ │ │ │ │ ├── ValueToObject.h │ │ │ │ │ └── debug_assert.h │ │ │ │ ├── JString.h │ │ │ │ ├── JVector.h │ │ │ │ ├── KeyObject.h │ │ │ │ ├── LogFormatOptions.h │ │ │ │ ├── Logger.h │ │ │ │ ├── MemoryManagement │ │ │ │ │ ├── Allocate.h │ │ │ │ │ ├── AllocatorInterface.h │ │ │ │ │ └── Internal │ │ │ │ │ │ ├── DirectAllocator.h │ │ │ │ │ │ ├── Entry.h │ │ │ │ │ │ ├── Interface.h │ │ │ │ │ │ ├── MemoryPool.h │ │ │ │ │ │ ├── MemoryPoolManager.h │ │ │ │ │ │ └── RawStorage.h │ │ │ │ ├── Object.h │ │ │ │ ├── Serializer.h │ │ │ │ ├── ToString.h │ │ │ │ ├── UTF8String.h │ │ │ │ ├── ValueObject.h │ │ │ │ ├── defines.h │ │ │ │ ├── platformLayer.h │ │ │ │ ├── platform_definition.h │ │ │ │ └── porting.h │ │ │ └── lib │ │ │ │ ├── Common-cpp_vc14_debug_windows_mt_Win32.lib │ │ │ │ └── Common-cpp_vc14_release_windows_mt_Win32.lib │ │ ├── LoadBalancing-cpp │ │ │ ├── inc │ │ │ │ ├── AuthenticationValues.h │ │ │ │ ├── Client.h │ │ │ │ ├── Enums │ │ │ │ │ ├── CustomAuthenticationType.h │ │ │ │ │ ├── DirectMode.h │ │ │ │ │ ├── DisconnectCause.h │ │ │ │ │ ├── ErrorCode.h │ │ │ │ │ ├── LobbyType.h │ │ │ │ │ ├── MatchmakingMode.h │ │ │ │ │ ├── PeerStates.h │ │ │ │ │ ├── RegionSelectionMode.h │ │ │ │ │ └── ServerType.h │ │ │ │ ├── FriendInfo.h │ │ │ │ ├── Internal │ │ │ │ │ ├── AuthenticationValuesSecretSetter.h │ │ │ │ │ ├── Enums │ │ │ │ │ │ ├── EncryptionDataParameters.h │ │ │ │ │ │ ├── EncryptionMode.h │ │ │ │ │ │ ├── EventCode.h │ │ │ │ │ │ ├── JoinMode.h │ │ │ │ │ │ ├── JoinType.h │ │ │ │ │ │ ├── OperationCode.h │ │ │ │ │ │ ├── ParameterCode.h │ │ │ │ │ │ └── Properties │ │ │ │ │ │ │ ├── Player.h │ │ │ │ │ │ │ └── Room.h │ │ │ │ │ ├── MutablePlayerFactory.h │ │ │ │ │ ├── MutableRoomFactory.h │ │ │ │ │ ├── PlayerFactory.h │ │ │ │ │ ├── PlayerMovementInformant.h │ │ │ │ │ ├── PlayerMutableRoomPointerSetter.h │ │ │ │ │ ├── PlayerPropertiesCacher.h │ │ │ │ │ ├── PlayerPropertiesUpdateInformant.h │ │ │ │ │ ├── PuncherClient.h │ │ │ │ │ ├── RoomFactory.h │ │ │ │ │ ├── RoomPropertiesCacher.h │ │ │ │ │ └── Utils.h │ │ │ │ ├── Listener.h │ │ │ │ ├── LobbyStatsRequest.h │ │ │ │ ├── LobbyStatsResponse.h │ │ │ │ ├── MutablePlayer.h │ │ │ │ ├── MutableRoom.h │ │ │ │ ├── Peer.h │ │ │ │ ├── Player.h │ │ │ │ ├── RaiseEventOptions.h │ │ │ │ ├── Room.h │ │ │ │ ├── RoomOptions.h │ │ │ │ └── WebFlags.h │ │ │ ├── lib │ │ │ │ ├── LoadBalancing-cpp_vc14_debug_windows_mt_Win32.lib │ │ │ │ └── LoadBalancing-cpp_vc14_release_windows_mt_Win32.lib │ │ │ └── src │ │ │ │ ├── AuthenticationValues.cpp │ │ │ │ ├── Client.cpp │ │ │ │ ├── FriendInfo.cpp │ │ │ │ ├── Internal │ │ │ │ ├── AuthenticationValuesSecretSetter.cpp │ │ │ │ ├── MutablePlayerFactory.cpp │ │ │ │ ├── MutableRoomFactory.cpp │ │ │ │ ├── PlayerFactory.cpp │ │ │ │ ├── PlayerMovementInformant.cpp │ │ │ │ ├── PlayerMutableRoomPointerSetter.cpp │ │ │ │ ├── PlayerPropertiesCacher.cpp │ │ │ │ ├── PlayerPropertiesUpdateInformant.cpp │ │ │ │ ├── PuncherClient.cpp │ │ │ │ ├── RoomFactory.cpp │ │ │ │ ├── RoomPropertiesCacher.cpp │ │ │ │ └── Utils.cpp │ │ │ │ ├── LobbyStatsRequest.cpp │ │ │ │ ├── LobbyStatsResponse.cpp │ │ │ │ ├── MutablePlayer.cpp │ │ │ │ ├── MutableRoom.cpp │ │ │ │ ├── Peer.cpp │ │ │ │ ├── Player.cpp │ │ │ │ ├── RaiseEventOptions.cpp │ │ │ │ ├── Room.cpp │ │ │ │ ├── RoomOptions.cpp │ │ │ │ └── WebFlags.cpp │ │ └── Photon-cpp │ │ │ ├── inc │ │ │ ├── Enums │ │ │ │ ├── ConnectionProtocol.h │ │ │ │ ├── ErrorCode.h │ │ │ │ ├── EventCache.h │ │ │ │ ├── EventCode.h │ │ │ │ ├── EventKey.h │ │ │ │ ├── NetworkPort.h │ │ │ │ ├── OperationCode.h │ │ │ │ ├── ParameterCode.h │ │ │ │ ├── PeerState.h │ │ │ │ ├── ReceiverGroup.h │ │ │ │ └── StatusCode.h │ │ │ ├── EventData.h │ │ │ ├── LitePeer.h │ │ │ ├── OperationRequest.h │ │ │ ├── OperationResponse.h │ │ │ ├── PhotonListener.h │ │ │ ├── PhotonPeer.h │ │ │ ├── Punchthrough │ │ │ │ ├── PunchListener.h │ │ │ │ ├── Puncher.h │ │ │ │ └── RelayClient.h │ │ │ ├── TrafficStats.h │ │ │ └── TrafficStatsGameLevel.h │ │ │ └── lib │ │ │ ├── Photon-cpp_vc14_debug_windows_mt_Win32.lib │ │ │ └── Photon-cpp_vc14_release_windows_mt_Win32.lib │ ├── RecastContrib │ │ ├── SDL │ │ │ ├── BUGS.txt │ │ │ ├── COPYING.txt │ │ │ ├── README-SDL.txt │ │ │ ├── README.txt │ │ │ ├── WhatsNew.txt │ │ │ ├── docs │ │ │ │ ├── README-android.md │ │ │ │ ├── README-cmake.md │ │ │ │ ├── README-directfb.md │ │ │ │ ├── README-dynapi.md │ │ │ │ ├── README-emscripten.md │ │ │ │ ├── README-gesture.md │ │ │ │ ├── README-hg.md │ │ │ │ ├── README-ios.md │ │ │ │ ├── README-linux.md │ │ │ │ ├── README-macosx.md │ │ │ │ ├── README-nacl.md │ │ │ │ ├── README-os2.md │ │ │ │ ├── README-pandora.md │ │ │ │ ├── README-platforms.md │ │ │ │ ├── README-porting.md │ │ │ │ ├── README-psp.md │ │ │ │ ├── README-raspberrypi.md │ │ │ │ ├── README-touch.md │ │ │ │ ├── README-wince.md │ │ │ │ ├── README-windows.md │ │ │ │ ├── README-winrt.md │ │ │ │ ├── README.md │ │ │ │ └── doxyfile │ │ │ ├── include │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config.h.cmake │ │ │ │ ├── SDL_config.h.in │ │ │ │ ├── SDL_config_android.h │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_config_macosx.h.orig │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ ├── SDL_config_psp.h │ │ │ │ ├── SDL_config_windows.h │ │ │ │ ├── SDL_config_winrt.h │ │ │ │ ├── SDL_config_wiz.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_egl.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_locale.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_metal.h │ │ │ │ ├── SDL_misc.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengl_glext.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_opengles2_gl2.h │ │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_sensor.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_test.h │ │ │ │ ├── SDL_test_assert.h │ │ │ │ ├── SDL_test_common.h │ │ │ │ ├── SDL_test_compare.h │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ ├── SDL_test_font.h │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ ├── SDL_test_harness.h │ │ │ │ ├── SDL_test_images.h │ │ │ │ ├── SDL_test_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_memory.h │ │ │ │ ├── SDL_test_random.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── SDL_vulkan.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ └── lib │ │ │ │ ├── x64 │ │ │ │ ├── SDL2.dll │ │ │ │ ├── SDL2.lib │ │ │ │ ├── SDL2main.lib │ │ │ │ └── SDL2test.lib │ │ │ │ └── x86 │ │ │ │ ├── SDL2.dll │ │ │ │ ├── SDL2.lib │ │ │ │ ├── SDL2main.lib │ │ │ │ └── SDL2test.lib │ │ ├── fastlz │ │ │ ├── README.TXT │ │ │ ├── fastlz.c │ │ │ └── fastlz.h │ │ ├── readme-sdl.txt │ │ └── stb_truetype.h │ ├── Steamworks SDK │ │ ├── Readme.txt │ │ ├── client │ │ │ └── steam.cfg │ │ ├── glmgr │ │ │ ├── cglmbuffer.cpp │ │ │ ├── cglmbuffer.h │ │ │ ├── cglmfbo.cpp │ │ │ ├── cglmfbo.h │ │ │ ├── cglmprogram.cpp │ │ │ ├── cglmprogram.h │ │ │ ├── cglmquery.cpp │ │ │ ├── cglmquery.h │ │ │ ├── cglmtex.cpp │ │ │ ├── cglmtex.h │ │ │ ├── dx9asmtogl2.cpp │ │ │ ├── dx9asmtogl2.h │ │ │ ├── dxabstract.cpp │ │ │ ├── dxabstract.h │ │ │ ├── glmdebug.h │ │ │ ├── glmdisplay.h │ │ │ ├── glmgr.cpp │ │ │ ├── glmgr.h │ │ │ ├── glmgrbasics.cpp │ │ │ ├── glmgrbasics.h │ │ │ ├── glmgrcocoa.mm │ │ │ ├── glmgrext.cpp │ │ │ ├── glmgrext.h │ │ │ ├── imageformat.h │ │ │ ├── mathlite.cpp │ │ │ ├── mathlite.h │ │ │ └── readme.txt │ │ ├── public │ │ │ └── steam │ │ │ │ ├── isteamapplist.h │ │ │ │ ├── isteamapps.h │ │ │ │ ├── isteamappticket.h │ │ │ │ ├── isteamclient.h │ │ │ │ ├── isteamcontroller.h │ │ │ │ ├── isteamfriends.h │ │ │ │ ├── isteamgamecoordinator.h │ │ │ │ ├── isteamgameserver.h │ │ │ │ ├── isteamgameserverstats.h │ │ │ │ ├── isteamhtmlsurface.h │ │ │ │ ├── isteamhttp.h │ │ │ │ ├── isteaminventory.h │ │ │ │ ├── isteammasterserverupdater.h │ │ │ │ ├── isteammatchmaking.h │ │ │ │ ├── isteammusic.h │ │ │ │ ├── isteammusicremote.h │ │ │ │ ├── isteamnetworking.h │ │ │ │ ├── isteamps3overlayrenderer.h │ │ │ │ ├── isteamremotestorage.h │ │ │ │ ├── isteamscreenshots.h │ │ │ │ ├── isteamugc.h │ │ │ │ ├── isteamunifiedmessages.h │ │ │ │ ├── isteamuser.h │ │ │ │ ├── isteamuserstats.h │ │ │ │ ├── isteamutils.h │ │ │ │ ├── isteamvideo.h │ │ │ │ ├── lib │ │ │ │ ├── osx32 │ │ │ │ │ └── libsdkencryptedappticket.dylib │ │ │ │ ├── win32 │ │ │ │ │ ├── sdkencryptedappticket.dll │ │ │ │ │ └── sdkencryptedappticket.lib │ │ │ │ └── win64 │ │ │ │ │ ├── sdkencryptedappticket64.dll │ │ │ │ │ └── sdkencryptedappticket64.lib │ │ │ │ ├── matchmakingtypes.h │ │ │ │ ├── steam_api.h │ │ │ │ ├── steam_gameserver.h │ │ │ │ ├── steamclientpublic.h │ │ │ │ ├── steamcontrollerpublic.h │ │ │ │ ├── steamencryptedappticket.h │ │ │ │ ├── steamhttpenums.h │ │ │ │ ├── steamps3params.h │ │ │ │ ├── steamtypes.h │ │ │ │ ├── steamuniverse.h │ │ │ │ └── steamvr.h │ │ ├── redistributable_bin │ │ │ ├── osx32 │ │ │ │ └── libsteam_api.dylib │ │ │ ├── steam_api.dll │ │ │ ├── steam_api.lib │ │ │ └── win64 │ │ │ │ ├── steam_api64.dll │ │ │ │ └── steam_api64.lib │ │ └── tools │ │ │ ├── ContentBuilder │ │ │ ├── A REAL STEAM BUILD.bat │ │ │ ├── COPY TO LAPTOP AND STEAM.bat │ │ │ ├── DLC Mega Pack 1 BUILD.bat │ │ │ ├── MAKE PROTO BUILD.bat │ │ │ ├── Make FPSCR Build For Steam.bat │ │ │ ├── Make Game Guru Build For Steam.bat │ │ │ ├── scripts │ │ │ │ ├── app_build_266310.vdf │ │ │ │ ├── depot_build_266311.vdf │ │ │ │ ├── depot_build_buildings_pack_365520.vdf │ │ │ │ ├── depot_build_death_valley_pack_365540.vdf │ │ │ │ ├── depot_build_fantasy_pack_365530.vdf │ │ │ │ ├── depot_build_mega_pack_1_321140.vdf │ │ │ │ ├── depot_build_mega_pack_2_321141.vdf │ │ │ │ └── depot_build_mega_pack_3_321142.vdf │ │ │ └── steam_install.vdf │ │ │ ├── ContentPrep.zip │ │ │ ├── ContentServer │ │ │ ├── htdocs │ │ │ │ └── index.html │ │ │ ├── mongoose-license.txt │ │ │ └── mongoose.conf │ │ │ ├── drm │ │ │ ├── Readme.txt │ │ │ ├── drmtool.cfg │ │ │ ├── ubuntu12_32 │ │ │ │ └── drmtoolp │ │ │ └── ubuntu12_64 │ │ │ │ └── drmtoolp │ │ │ ├── goldmaster │ │ │ ├── disk_assets │ │ │ │ ├── SteamRetailInstaller.dmg │ │ │ │ ├── SteamworksExample_disk1.sim │ │ │ │ ├── SteamworksExample_disk1.sis │ │ │ │ ├── SteamworksExample_disk1_0.sid │ │ │ │ ├── autorun.inf │ │ │ │ ├── icon.ico │ │ │ │ ├── resources │ │ │ │ │ ├── click.wav │ │ │ │ │ ├── eula.rtf │ │ │ │ │ ├── hover.wav │ │ │ │ │ ├── installscript.vdf │ │ │ │ │ ├── launch.wav │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── setup.bmp │ │ │ │ │ ├── setup_arabic.ini │ │ │ │ │ ├── setup_czech.ini │ │ │ │ │ ├── setup_danish.ini │ │ │ │ │ ├── setup_dutch.ini │ │ │ │ │ ├── setup_english.ini │ │ │ │ │ ├── setup_finnish.ini │ │ │ │ │ ├── setup_french.ini │ │ │ │ │ ├── setup_german.ini │ │ │ │ │ ├── setup_hungarian.ini │ │ │ │ │ ├── setup_italian.ini │ │ │ │ │ ├── setup_japanese.ini │ │ │ │ │ ├── setup_korean.ini │ │ │ │ │ ├── setup_norwegian.ini │ │ │ │ │ ├── setup_polish.ini │ │ │ │ │ ├── setup_portuguese.ini │ │ │ │ │ ├── setup_russian.ini │ │ │ │ │ ├── setup_schinese.ini │ │ │ │ │ ├── setup_spanish.ini │ │ │ │ │ ├── setup_swedish.ini │ │ │ │ │ ├── setup_tchinese.ini │ │ │ │ │ └── setup_thai.ini │ │ │ │ ├── setup.ini │ │ │ │ └── splash.tga │ │ │ ├── project_example.bat │ │ │ └── sku_project_example.txt │ │ │ └── linux │ │ │ ├── README.txt │ │ │ └── setup.sh │ └── VuzixSDK │ │ ├── docs │ │ └── Vuzix SDK Documentation v3.6.pdf │ │ ├── examples │ │ ├── HelloTracker3 │ │ │ ├── Backup │ │ │ │ └── HelloTracker3.sln │ │ │ ├── HelloTracker2.rc │ │ │ ├── HelloTracker2.vcproj │ │ │ ├── HelloTracker2.vcxproj │ │ │ ├── HelloTracker2.vcxproj.filters │ │ │ ├── HelloTracker3.cpp │ │ │ ├── HelloTracker3.h │ │ │ ├── HelloTracker3.sln │ │ │ ├── HelloTracker3.sln.2010 │ │ │ ├── HelloTrackerDlg.cpp │ │ │ ├── HelloTrackerDlg.h │ │ │ ├── ReadMe.txt │ │ │ ├── UpgradeLog.htm │ │ │ ├── res │ │ │ │ ├── HelloTracker2.ico │ │ │ │ ├── HelloTracker2.rc2 │ │ │ │ └── HelloTracker3.manifest │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── TrackerMath │ │ │ ├── TrackerMath.sln │ │ │ └── TrackerMath │ │ │ │ ├── COPYING │ │ │ │ ├── COPYING.LESSER │ │ │ │ ├── MadgwickAHRS.c │ │ │ │ ├── MahonyAHRS.c │ │ │ │ ├── TrackerMath.cpp │ │ │ │ ├── TrackerMath.h │ │ │ │ ├── TrackerMath.rc │ │ │ │ ├── TrackerMath.vcproj │ │ │ │ ├── resource.h │ │ │ │ └── targetver.h │ │ ├── VR920_OpenGL_Stereoscopy │ │ │ ├── IWRFilterTracking.cpp │ │ │ ├── OpenGLExample.cpp │ │ │ ├── OpenGLExample.rc │ │ │ ├── OpenGLExample.sln │ │ │ ├── OpenGLExample.sln.2010 │ │ │ ├── OpenGLExample.vcproj │ │ │ ├── OpenGLExample.vcxproj │ │ │ ├── resource.h │ │ │ ├── stdafx.h │ │ │ └── vr920mon.ico │ │ ├── VR920_QueryGPU_Dx9-Dx10_Stereoscopy │ │ │ ├── Backup │ │ │ │ └── Matrices.sln │ │ │ ├── IWRFilterTracking.cpp │ │ │ ├── Matrices.rc │ │ │ ├── Matrices.sln │ │ │ ├── Matrices.sln.2010 │ │ │ ├── Matrices.vcproj │ │ │ ├── Matrices.vcxproj │ │ │ ├── MatricesQueryGPU.cpp │ │ │ ├── UpgradeLog.htm │ │ │ ├── resource.h │ │ │ └── vr920mon.ico │ │ └── VR920_XNA31_Stereoscopy │ │ │ └── VR920_XNA_STEREOSCOPY │ │ │ ├── Microsoft Permissive License.rtf │ │ │ ├── SkinnedModel │ │ │ ├── AnimationClip.cs │ │ │ ├── AnimationPlayer.cs │ │ │ ├── Keyframe.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SkinnedModelWindows.csproj │ │ │ ├── SkinnedModelXbox.csproj │ │ │ └── SkinningData.cs │ │ │ ├── SkinnedModelPipeline │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SkinnedModelPipeline.csproj │ │ │ └── SkinnedModelProcessor.cs │ │ │ ├── Skinning.htm │ │ │ ├── SkinningSample │ │ │ ├── Content │ │ │ │ ├── Content.contentproj │ │ │ │ ├── SkinnedModel.fx │ │ │ │ ├── dude.fbx │ │ │ │ ├── font.spritefont │ │ │ │ ├── head.tga │ │ │ │ ├── jacket.tga │ │ │ │ ├── pants.tga │ │ │ │ └── upBodyC.tga │ │ │ ├── Game.ico │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SkinningSample.png │ │ │ ├── SkinningSampleWindows.csproj.Debug.cachefile │ │ │ ├── SkinningSampleWindows.csproj.Release.cachefile │ │ │ ├── SkinningSampleXbox.csproj │ │ │ ├── VR920_XNA_Stereoscopy.cs │ │ │ ├── VR920_XNA_Stereoscopy.csproj │ │ │ └── VR920_XNA_Stereoscopy.csproj.Release.cachefile │ │ │ ├── SkinningSampleXbox.sln │ │ │ └── VR920_XNA_Stereoscopy.sln │ │ ├── inc │ │ ├── iWearSDK.h │ │ ├── iweardrv.h │ │ ├── iwrsguid.h │ │ ├── iwrstdrv.h │ │ └── iwrstreo.h │ │ └── lib │ │ ├── TrackerMath.lib │ │ ├── iweardrv.lib │ │ ├── iwrstdrv.lib │ │ └── x64 │ │ ├── TrackerMath.dll │ │ ├── TrackerMath.lib │ │ ├── iweardrv.dll │ │ ├── iweardrv.lib │ │ ├── iwrstdrv.dll │ │ └── iwrstdrv.lib └── options.txt ├── GameGuru IDE ├── About.cpp ├── About.h ├── AutoUpdate.cpp ├── AutoUpdate.h ├── BlackBox.cpp ├── BlackBox.h ├── Browser.cpp ├── Browser.h ├── BrowserNew.cpp ├── BrowserNew.h ├── CartMsgDialog.cpp ├── CartMsgDialog.h ├── ChildFrm.cpp ├── ChildFrm.h ├── CntrItem.cpp ├── CntrItem.h ├── DisplayFilters.cpp ├── DisplayFilters.h ├── DownloadStoreItems │ ├── DownloadStoreItems.cpp │ ├── DownloadStoreItems.h │ ├── DownloadStoreItemsFile.cpp │ ├── DownloadStoreItemsFile.h │ ├── cleanupFolders.cpp │ ├── cleanupFolders.h │ ├── urlDecode.cpp │ └── urlDecode.h ├── EditDialog.cpp ├── EditDialog.h ├── Editor - Copy (2).rc ├── Editor - Copy.rc ├── Editor.aps ├── Editor.cpp ├── Editor.h ├── Editor.rc ├── Editor.reg ├── EditorDoc.cpp ├── EditorDoc.h ├── EditorView.cpp ├── EditorView.h ├── EnumProcess.cpp ├── EnumProcess.h ├── FPS.vcxproj ├── FPS.vcxproj.filters ├── FileDialog.cpp ├── FileDialog.h ├── GameGuru IDE.sln ├── GameGuru.exe.manifest ├── Global.cpp ├── Global.h ├── HTTPComm.cpp ├── HTTPComm.h ├── HashTree.cpp ├── HashTree.h ├── HelpWizard.cpp ├── HelpWizard.h ├── IPC.cpp ├── IPC.h ├── LoginDialog2.cpp ├── LoginDialog2.h ├── MainFrm.cpp ├── MainFrm.h ├── MyTabCtrl.cpp ├── MyTabCtrl.h ├── OLDUI │ └── ControlBar │ │ ├── BCGAnimCtrl.h │ │ ├── BCGButton.h │ │ ├── BCGCB.h │ │ ├── BCGCB59Static.LIB │ │ ├── BCGCB59StaticD.LIB │ │ ├── BCGCaptionBar.h │ │ ├── BCGColorBar.h │ │ ├── BCGColorButton.h │ │ ├── BCGColorDialog.h │ │ ├── BCGColorMenuButton.h │ │ ├── BCGCommandManager.h │ │ ├── BCGContextMenuManager.h │ │ ├── BCGControlBar.h │ │ ├── BCGControlBar.rc │ │ ├── BCGControlBarImpl.h │ │ ├── BCGDialog.h │ │ ├── BCGDialogBar.h │ │ ├── BCGDockBar.h │ │ ├── BCGDockContext.h │ │ ├── BCGDrawManager.h │ │ ├── BCGDropDown.h │ │ ├── BCGEditListBox.h │ │ ├── BCGExCheckList.h │ │ ├── BCGFileDialog.h │ │ ├── BCGFontComboBox.h │ │ ├── BCGFrameImpl.h │ │ ├── BCGFrameWnd.h │ │ ├── BCGHeaderCtrl.h │ │ ├── BCGInit.h │ │ ├── BCGKeyMapDlg.h │ │ ├── BCGKeyboardManager.h │ │ ├── BCGListCtrl.h │ │ ├── BCGMDIChildWnd.h │ │ ├── BCGMDIFrameWnd.h │ │ ├── BCGMainClientAreaWnd.h │ │ ├── BCGMenuBar.h │ │ ├── BCGMenuButton.h │ │ ├── BCGMouseManager.h │ │ ├── BCGMultiDocTemplate.h │ │ ├── BCGOleDocIPFrameWnd.h │ │ ├── BCGOleIPFrameWnd.h │ │ ├── BCGOutlookButton.h │ │ ├── BCGPopupMenu.h │ │ ├── BCGPopupMenuBar.h │ │ ├── BCGPrintPreviewView.h │ │ ├── BCGPropList.h │ │ ├── BCGRegistry.h │ │ ├── BCGSelectSkinDlg.h │ │ ├── BCGShellList.h │ │ ├── BCGShellManager.h │ │ ├── BCGShellPIDL.h │ │ ├── BCGShellTree.h │ │ ├── BCGShowAllButton.h │ │ ├── BCGSizingControlBar.h │ │ ├── BCGSkinEntry.h │ │ ├── BCGSkinManager.h │ │ ├── BCGSplitterWnd.h │ │ ├── BCGStatusBar.h │ │ ├── BCGTabView.h │ │ ├── BCGTearOffManager.h │ │ ├── BCGToolBar.h │ │ ├── BCGToolBarImages.h │ │ ├── BCGToolbarButton.h │ │ ├── BCGToolbarComboBoxButton.h │ │ ├── BCGToolbarDateTimeCtrl.h │ │ ├── BCGToolbarDropSource.h │ │ ├── BCGToolbarDropTarget.h │ │ ├── BCGToolbarEditBoxButton.h │ │ ├── BCGToolbarFontCombo.h │ │ ├── BCGToolbarMenuButton.h │ │ ├── BCGToolbarMenuButtonsButton.h │ │ ├── BCGToolbarRegularMenuButton.h │ │ ├── BCGToolbarSystemMenuButton.h │ │ ├── BCGToolsPage.h │ │ ├── BCGURLLinkButton.h │ │ ├── BCGUserTool.h │ │ ├── BCGUserToolsManager.h │ │ ├── BCGVisualManager.h │ │ ├── BCGVisualManagerXP.h │ │ ├── BCGWinXPVisualManager.h │ │ ├── BCGWindowsManagerDlg.h │ │ ├── BCGWorkspace.h │ │ ├── ButtonAppearanceDlg.h │ │ ├── ButtonsList.h │ │ ├── ButtonsTextList.h │ │ ├── CBCGToolbarCustomize.h │ │ ├── CBCGToolbarCustomizePages.h │ │ ├── CmdUsageCount.h │ │ ├── ColorPage1.h │ │ ├── ColorPage2.h │ │ ├── ColorPopup.h │ │ ├── CustomizeButton.h │ │ ├── GLOBALS.H │ │ ├── ImageEditDlg.h │ │ ├── ImageHash.h │ │ ├── ImagePaintArea.h │ │ ├── KeyAssign.h │ │ ├── KeyHelper.h │ │ ├── KeyboardPage.h │ │ ├── MenuHash.h │ │ ├── MenuImages.h │ │ ├── MenuPage.h │ │ ├── MousePage.h │ │ ├── OptionsPage.h │ │ ├── PropertySheetCtrl.h │ │ ├── RebarState.h │ │ ├── RegPath.h │ │ ├── Res │ │ ├── BCGControlBar.rc2 │ │ ├── PrintPreview.bmp │ │ ├── arrows.bmp │ │ ├── color.cur │ │ ├── copy.bmp │ │ ├── copy.cur │ │ ├── delete.bmp │ │ ├── delete.cur │ │ ├── down.bmp │ │ ├── ellipse.cur │ │ ├── fill.cur │ │ ├── font.bmp │ │ ├── hand.cur │ │ ├── help.bmp │ │ ├── help.ico │ │ ├── line.cur │ │ ├── mail.bmp │ │ ├── menuimg.bmp │ │ ├── move.cur │ │ ├── new.bmp │ │ ├── palette.bmp │ │ ├── pen.cur │ │ ├── print.bmp │ │ ├── rect.cur │ │ ├── tool.ico │ │ ├── up.bmp │ │ └── url.bmp │ │ ├── ToolbarNameDlg.h │ │ ├── TrackMouse.h │ │ ├── bcgbarres.h │ │ ├── bcgcbver.h │ │ ├── bcghelpids.h │ │ ├── bcglocalres.h │ │ ├── bcgoutlookbar.h │ │ ├── bcgsound.h │ │ ├── bcgtabwnd.h │ │ ├── powercolorpicker.h │ │ └── stdafx.h ├── ObjectColor.cpp ├── ObjectColor.h ├── ObjectProperty.cpp ├── ObjectProperty.h ├── OggPlayer.cpp ├── OggPlayer.h ├── OutputBar.cpp ├── OutputBar.h ├── Poster.cpp ├── Poster.h ├── PreviewRect.cpp ├── PreviewRect.h ├── ProgressSpinner.cpp ├── ProgressSpinner.h ├── RCa17900 ├── ResizableDialog.cpp ├── ResizableDialog.h ├── RotateByShear.h ├── SampleList.cpp ├── SampleList.h ├── SerialCode │ ├── md5.cpp │ └── md5.h ├── Splash.cpp ├── Splash.h ├── StdAfx.cpp ├── StdAfx.h ├── StoreButton.cpp ├── StoreButton.h ├── StringFunc.cpp ├── StringFunc.h ├── TCExpand.h ├── TCIterator.h ├── TCPersist.h ├── Tab1.cpp ├── Tab1.h ├── Tab2.cpp ├── Tab2.h ├── Tab3.cpp ├── Tab3.h ├── TabCtrlSSL.cpp ├── TabCtrlSSL.h ├── TabPageSSL.cpp ├── TabPageSSL.h ├── Thread.h ├── UpdateCheckThread.cpp ├── UpdateCheckThread.h ├── UploadGame.cpp ├── UploadGame.h ├── UploadThread2.cpp ├── UploadThread2.h ├── VideoList.cpp ├── VideoList.h ├── VistaCheck.cpp ├── VistaTools.cxx ├── WorkspaceBar.cpp ├── WorkspaceBar.h ├── ZSplitter.cpp ├── ZSplitter.h ├── ZSplitterDlg.cpp ├── ZSplitterDlg.h ├── ZSplitterDlgEx.cpp ├── ZSplitterDlgEx.h ├── ZipArchive.lib ├── ZipArchiveD.lib ├── cBuildGame.cpp ├── cBuildGame.h ├── cBuildGameBuild.cpp ├── cBuildGameBuild.h ├── cBuildGameKeys.cpp ├── cBuildGameKeys.h ├── cBuildGameLevel.cpp ├── cBuildGameLevel.h ├── cBuildGameLight.cpp ├── cBuildGameLight.h ├── cBuildGameMultiplayer.cpp ├── cBuildGameMultiplayer.h ├── cBuildGameProject.cpp ├── cBuildGameProject.h ├── cBuildGameWeapons.cpp ├── cBuildGameWeapons.h ├── cControls.cpp ├── cControls.h ├── cCredits.cpp ├── cCredits.h ├── cDebug.cpp ├── cDebug.h ├── cDialog1.cpp ├── cDialog1.h ├── cDialogEnd.cpp ├── cDialogEnd.h ├── cDialogFront.cpp ├── cDialogFront.h ├── cFPIWizard.cpp ├── cFPIWizard.h ├── cFront.cpp ├── cFront.h ├── cLevelResize.cpp ├── cLevelResize.h ├── cLibraryImage.cpp ├── cLibraryImage.h ├── cLibraryTree.cpp ├── cLibraryTree.h ├── cLibraryWindow.cpp ├── cLibraryWindow.h ├── cLibraryWindowNew.cpp ├── cLibraryWindowNew.h ├── cMessages.cpp ├── cMessages.h ├── cNewProject.cpp ├── cNewProject.h ├── cPopup.cpp ├── cPopup.h ├── cPreferences.cpp ├── cPreferences.h ├── cProperty.cpp ├── cProperty.h ├── cTestGame.cpp ├── cTestGame.h ├── cVideo.cpp ├── cVideo.h ├── explorer1.cpp ├── explorer1.h ├── messages.mc ├── psapi.h ├── res │ ├── Editor.rc2 │ ├── Game Creator Store Button.bmp │ ├── GameToolbar.bmp │ ├── Messages_ENU.bin │ ├── Messages_GER.bin │ ├── ModeToolbar3.bmp │ ├── StandardToolBar2 - Copy.bmp │ ├── StandardToolBar2.bmp │ ├── TerrainToolbar.bmp │ ├── WaypointToolBar.bmp │ ├── ZoomToolbar2.bmp │ ├── editor.ico │ ├── logo.bmp │ ├── messages.h │ ├── messages.rc │ └── update_l.bmp ├── resource.h ├── vorbis │ ├── codec.h │ ├── lib │ │ ├── ogg.lib │ │ ├── ogg_d.lib │ │ ├── ogg_static.lib │ │ ├── ogg_static_d.lib │ │ ├── vorbis.lib │ │ ├── vorbis_d.lib │ │ ├── vorbis_static.lib │ │ ├── vorbis_static_d.lib │ │ ├── vorbisenc.lib │ │ ├── vorbisenc_d.lib │ │ ├── vorbisenc_static.lib │ │ ├── vorbisenc_static_d.lib │ │ ├── vorbisfile.lib │ │ ├── vorbisfile_d.lib │ │ ├── vorbisfile_static.lib │ │ └── vorbisfile_static_d.lib │ ├── ogg │ │ ├── ogg.h │ │ └── os_types.h │ ├── vorbisenc.h │ └── vorbisfile.h ├── zip │ ├── Appnote.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── ZipArchive.cpp │ ├── ZipArchive.h │ ├── ZipArchive.sln │ ├── ZipArchive.vcproj │ ├── ZipAutoBuffer.cpp │ ├── ZipAutoBuffer.h │ ├── ZipBigFile.cpp │ ├── ZipBigFile.h │ ├── ZipCentralDir.cpp │ ├── ZipCentralDir.h │ ├── ZipException.cpp │ ├── ZipException.h │ ├── ZipFileHeader.cpp │ ├── ZipFileHeader.h │ ├── ZipInternalInfo.cpp │ ├── ZipInternalInfo.h │ ├── ZipStorage.cpp │ ├── ZipStorage.h │ ├── zconf.h │ ├── zlib-1.2.7 │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── make_vms.com │ │ ├── treebuild.xml │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.3 │ │ ├── zlib.3.pdf │ │ ├── zlib.h │ │ ├── zlib.map │ │ ├── zutil.c │ │ └── zutil.h │ ├── zlib.h │ └── zlib.lib └── zlib.lib └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/.gitignore -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Animation/x64/Debug/Animation.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Animation/x64/Release/Animation.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Basic2D/x64/Debug/Basic2D.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Basic2D/x64/Release/Basic2D.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Bitmap/x64/Debug/Bitmap.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Bitmap/x64/Release/Bitmap.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Bullet/x64/Debug/Bullet.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Bullet/x64/Release/Bullet.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Camera/x64/Debug/Camera.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Camera/x64/Release/Camera.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/ConvX/x64/Debug/ConvX.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/ConvX/x64/Release/ConvX.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Core/x64/Debug/DBDLLCore.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Core/x64/Release/DBDLLCore.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/FTP/x64/Debug/FTP.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/FTP/x64/Release/FTP.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/File/x64/Debug/File.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/File/x64/Release/File.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Image/x64/Debug/Image.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Image/x64/Release/Image.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Input/x64/Debug/Input.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Input/x64/Release/Input.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Light/x64/Debug/Light.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Light/x64/Release/Light.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Memblocks/x64/Debug/Memblocks.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Memblocks/x64/Release/Memblocks.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Objects/x64/Debug/Objects.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Objects/x64/Release/Objects.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Setup/x64/Debug/Setup.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Setup/x64/Release/Setup.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Sound/x64/Debug/Sound.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Sound/x64/Release/Sound.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Sprites/x64/Debug/Sprites.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Sprites/x64/Release/Sprites.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/System/x64/Debug/System.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/System/x64/Release/System.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Text/x64/Debug/Text.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Text/x64/Release/Text.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Vectors/x64/Debug/Vectors.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDK/Vectors/x64/Release/Vectors.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/BlitzTerrain/x64/Debug/BlitzTerrain.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/BlitzTerrain/x64/Release/BlitzTerrain.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/BlitzTerrain_RTTMSPlugin/wholeterrain.cpp: -------------------------------------------------------------------------------- 1 | #include "wholeterrain.h" 2 | 3 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/BlitzTerrain_RTTMSPlugin/x64/Debug/BlitzTerrain_RTTMSPlugin.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/BlitzTerrain_RTTMSPlugin/x64/Release/BlitzTerrain_RTTMSPlugin.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/CPU3D/x64/Debug/CPU3DTest.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/CPU3D/x64/Release/CPU3DTest.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/DarkAI/LUAScript.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "LUAScript.h" -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/DarkAI/x64/Debug/DarkMind.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/DarkAI/x64/Release/DarkMind.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/DarkLIGHTS/LMGlobal.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "LMGlobal.h" 3 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/DarkLIGHTS/x64/Debug/LightMapper.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/DarkLIGHTS/x64/Release/LightMapper.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/DarkLUA/x64/Debug/DarkLUA.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/DarkLUA/x64/Release/DarkLUA.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/Enhancements/x64/Debug/Main.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/Enhancements/x64/Release/Main.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/SimonReloaded/x64/Debug/SimonReloaded.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/SimonReloaded/x64/Release/SimonReloaded.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/SteamMultiplayer/x64/Debug/SteamMultiplayer.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/DarkSDKMore/SteamMultiplayer/x64/Release/SteamMultiplayer.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/Shared/Animation/ImageSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/Shared/Sprites/ImageSupport.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/Shared/Transforms/Transform.cpp: -------------------------------------------------------------------------------- 1 | #include "Transform.h" 2 | -------------------------------------------------------------------------------- /GameGuru Core/Dark Basic Public Shared/Dark Basic Pro SDK/Shared/Transforms/Transform.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /GameGuru Core/GameGuru.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru.sln -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/LICENSE.txt -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/boxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/boxer.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imconfig.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imgui.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imgui.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imgui_gg_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imgui_gg_dx11.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imgui_gg_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imgui_gg_dx11.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imgui_internal.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imstb_textedit.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Imgui/imstb_truetype.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/Common-File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/Common-File.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/Common-Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/Common-Fonts.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/Common-Images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/Common-Images.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/Common-Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/Common-Input.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/Common-Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/Common-Keys.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/Common-Sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/Common-Sounds.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/Common.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/G-Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/G-Entity.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/G-Gun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/G-Gun.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/G-Lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/G-Lighting.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-AudioVolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-AudioVolume.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-DAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-DAI.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-DAINew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-DAINew.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Debug.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Decal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Decal.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-EBE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-EBE.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Entity.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Game.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Grass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Grass.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-GridEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-GridEdit.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Gun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Gun.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-HUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-HUD.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Importer.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Interactive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Interactive.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-LUA-Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-LUA-Entity.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-LUA-General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-LUA-General.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-LUA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-LUA.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Lighting.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-MP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-MP.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-MapFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-MapFile.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Material.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-OBS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-OBS.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Panel.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Particles.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Physics.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Postprocess.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Ragdoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Ragdoll.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-RealSense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-RealSense.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Sky.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Sliders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Sliders.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Terrain.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-TerrainNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-TerrainNew.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Titles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Titles.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-UndoSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-UndoSys.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Visuals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Visuals.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Waypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Waypoint.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Weapon.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/M-Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/M-Widget.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/MapEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/MapEditor.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/Types.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/cStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/cStr.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/gameguru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/gameguru.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/miniz.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/preprocessor-flags.h: -------------------------------------------------------------------------------- 1 | #define PRODUCTCLASSIC 2 | #include "preprocessor-moreflags.h" 3 | -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/sha1.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Include/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Include/sha2.h -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Shaders and Scripts/effectbank/reloaded/entity_cube.fx: -------------------------------------------------------------------------------- 1 | #define USECUBEMAPPING 2 | #include "entity_basic.fx" 3 | -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Shaders and Scripts/effectbank/reloaded/gui_diffuse.fx: -------------------------------------------------------------------------------- 1 | #define GUIUSEDIFFUSE 2 | #include "gui_basic.fx" 3 | -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Shaders and Scripts/effectbank/reloaded/gui_showdepth.fx: -------------------------------------------------------------------------------- 1 | #define GUISHOWSHADOWDEPTHMAPS 2 | #include "gui_basic.fx" 3 | -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Shaders and Scripts/effectbank/reloaded/gui_wireframe.fx: -------------------------------------------------------------------------------- 1 | #define GUIUSEWIREFRAME 2 | #include "gui_basic.fx" 3 | -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Shaders and Scripts/effectbank/reloaded/sky_basic.fx: -------------------------------------------------------------------------------- 1 | string Description = "Effect Skydome Shader"; 2 | #include "sky_core.fx" 3 | -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Shaders and Scripts/scriptbank/gfx/gfx folder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Shaders and Scripts/scriptbank/images/images folder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/Common-File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/Common-File.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/Common-Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/Common-Fonts.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/Common-Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/Common-Input.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/Common-Keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/Common-Keys.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/Common.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/G-Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/G-Entity.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/G-Gun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/G-Gun.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/G-Lighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/G-Lighting.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-DAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-DAI.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Debug.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Decal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Decal.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-EBE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-EBE.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Entity.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Game.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Grass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Grass.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-GridEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-GridEdit.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Gun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Gun.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-HUD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-HUD.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Importer.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-LUA-Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-LUA-Entity.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-LUA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-LUA.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Lighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Lighting.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-MPPhoton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-MPPhoton.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-MPSteam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-MPSteam.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-MapFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-MapFile.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Material.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-OBS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-OBS.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Panel.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Particles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Particles.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Physics.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Ragdoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Ragdoll.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-RealSense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-RealSense.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Sky.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Sliders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Sliders.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Terrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Terrain.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Titles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Titles.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-UndoSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-UndoSys.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Visuals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Visuals.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Waypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Waypoint.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Weapon.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/M-Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/M-Widget.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/MapEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/MapEditor.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/Types.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/cStr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/cStr.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/miniz.c -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/sha1.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuru/Source/sha2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/GameGuru/Source/sha2.cpp -------------------------------------------------------------------------------- /GameGuru Core/GameGuruPreprocessor/preprocessor-flags-classic.h: -------------------------------------------------------------------------------- 1 | #define PRODUCTCLASSIC 2 | #include "preprocessor-moreflags.h" 3 | -------------------------------------------------------------------------------- /GameGuru Core/Guru-Lightmapper/dbproexe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-Lightmapper/dbproexe.rc -------------------------------------------------------------------------------- /GameGuru Core/Guru-Lightmapper/icon2-db3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-Lightmapper/icon2-db3.ico -------------------------------------------------------------------------------- /GameGuru Core/Guru-Lightmapper/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-Lightmapper/macros.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-Lightmapper/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-Lightmapper/resource.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-Lightmapper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-Lightmapper/stdafx.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-Lightmapper/x64/Debug/Guru-Lightmapper.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Guru-Lightmapper/x64/Release/Guru-Lightmapper.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/DarkEXE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/DarkEXE.cpp -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/DarkEXE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/DarkEXE.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/DarkEXE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/DarkEXE.vcxproj -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/DarkErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/DarkErrors.cpp -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/EXEBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/EXEBlock.cpp -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/EXEBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/EXEBlock.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/Encryptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/Encryptor.cpp -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/Encryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/Encryptor.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/FileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/FileReader.cpp -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/FileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/FileReader.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/GameGuruEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/GameGuruEngine.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/GameGuruMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/GameGuruMain.cpp -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/GameGuruMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/GameGuruMain.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/dbproexe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/dbproexe.rc -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/icon2-db3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/icon2-db3.ico -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/icon2-dbp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/icon2-dbp.ico -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/macros.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/resource.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/resource.hm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/resource.hm -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/reviewrequestreminder.ini: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/showannouncements.ini: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/Guru-MapEditor/stdafx.h -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/x64/Debug/DarkEXE.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/Guru-MapEditor/x64/Release/DarkEXE.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/BULLET/bullet-2.81-rev2613/src/BulletMultiThreaded/SpuNarrowPhaseCollisionTask/readme.txt: -------------------------------------------------------------------------------- 1 | Empty placeholder for future Libspe2 SPU task 2 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/BULLET/bullet-2.81-rev2613/src/BulletMultiThreaded/SpuSampleTask/readme.txt: -------------------------------------------------------------------------------- 1 | Empty placeholder for future Libspe2 SPU task 2 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/STRMBASE.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/STRMBASE.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/amextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/amextra.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/amfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/amfilter.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/cache.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/combase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/combase.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/cprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/cprop.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/ctlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/ctlutil.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/d3dkmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/d3dkmt.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/ddmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/ddmm.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/dllsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/dllsetup.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/dsschedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/dsschedule.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/fourcc.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/measure.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/msgthrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/msgthrd.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/mtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/mtype.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/outputq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/outputq.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/pstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/pstream.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/pullpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/pullpin.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/refclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/refclock.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/reftime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/reftime.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/renbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/renbase.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/seekpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/seekpt.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/source.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/streams.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/strmbasd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/strmbasd.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/strmctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/strmctl.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/sysclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/sysclock.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/transfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/transfrm.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/transip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/transip.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/videoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/videoctl.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/vtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/vtrans.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/winctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/winctrl.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/winutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/winutil.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/wxdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/wxdebug.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/wxlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/wxlist.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/BaseClasses/wxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/BaseClasses/wxutil.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DB3/DB3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DB3/DB3.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DB3/DB3Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DB3/DB3Array.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DB3/DB3Dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DB3/DB3Dict.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DB3/DB3Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DB3/DB3Factory.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DB3/DB3List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DB3/DB3List.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DB3/DB3Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DB3/DB3Math.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DB3/DB3Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DB3/DB3Task.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DB3/DB3Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DB3/DB3Time.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Effect11/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Effect11/Effect.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Effect11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Effect11/LICENSE -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Effect11/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Effect11/ReadMe.txt -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Effect11/pchfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Effect11/pchfx.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/D3DX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/D3DX11.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/D3DX11core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/D3DX11core.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/D3DX11tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/D3DX11tex.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/audiodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/audiodefs.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/comdecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/comdecl.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/d3dx9.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/d3dx9anim.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/d3dx9core.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/d3dx9math.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/d3dx9mesh.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/d3dx9shape.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/d3dx9tex.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/d3dx9xof.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/xma2defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/xma2defs.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Include/xnamath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Include/xnamath.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/K3D_Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/K3D_Matrix.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/K3D_Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/K3D_Vector3D.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/D3DCSX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/D3DCSX.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/D3DCSXd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/D3DCSXd.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/DxErr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/DxErr.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/X3DAudio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/X3DAudio.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/XAPOFX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/XAPOFX.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/XInput.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/XInput.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d2d1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d2d1.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3d10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3d10.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3d10_1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3d10_1.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3d11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3d11.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3d9.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3dx10.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3dx10.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3dx10d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3dx10d.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3dx11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3dx11.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3dx11d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3dx11d.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3dx9.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3dx9d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3dx9d.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/d3dxof.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/d3dxof.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/dinput8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/dinput8.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/dsound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/dsound.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/dwrite.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/dwrite.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/dxgi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/dxgi.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/dxguid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/dxguid.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/Lib/x64/xapobase.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/Lib/x64/xapobase.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/d3dx11effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/d3dx11effect.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectX/directx-macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectX/directx-macros.cpp -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectXTex/DDSView/hlsl.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectXTex/DDSView/hlsl.cmd -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectXTex/DirectXTex/BC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectXTex/DirectXTex/BC.cpp -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectXTex/DirectXTex/BC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectXTex/DirectXTex/BC.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectXTex/DirectXTex/DDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectXTex/DirectXTex/DDS.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectXTex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectXTex/LICENSE -------------------------------------------------------------------------------- /GameGuru Core/SDK/DirectXTex/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/DirectXTex/ReadMe.txt -------------------------------------------------------------------------------- /GameGuru Core/SDK/NVAPI/NvApiDriverSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/NVAPI/NvApiDriverSettings.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/NVAPI/NvApiDriverSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/NVAPI/NvApiDriverSettings.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/NVAPI/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/NVAPI/nvapi.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/NVAPI/x86/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/NVAPI/x86/nvapi.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/include/ogg/ogg.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/include/ogg/os_types.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/include/vorbis/codec.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/lib/ogg_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/lib/ogg_static.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/lib/vorbis_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/lib/vorbis_static.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/AUTHORS -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/CHANGES -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/CMakeLists.txt -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/COPYING -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/README.md -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/aclocal.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/compile -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/config.guess -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/config.h.in -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/config.sub -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/configure -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/configure.ac -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/depcomp -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/install-sh -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/libogg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/libogg.spec -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/libogg.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/libogg.spec.in -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/ltmain.sh -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/m4/libtool.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/m4/ltoptions.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/m4/ltsugar.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/m4/ltversion.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/missing -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/ogg.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/ogg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/ogg.pc.in -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/src/bitwise.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/src/crctable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/src/crctable.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/src/framing.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/win32/VS2022/x64/Debug/libogg.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/win32/VS2022/x64/Release/libogg.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libogg/win32/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libogg/win32/ogg.def -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/AUTHORS -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/CHANGES -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/COPYING -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/aclocal.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/autogen.sh -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/compile -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/config.guess -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/config.h.in -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/config.sub -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/configure -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/configure.ac -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/depcomp -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/install-sh -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/analysis.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/backends.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/block.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/info.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/lpc.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/lpc.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/lsp.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/lsp.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/mdct.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/mdct.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/misc.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/os.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/psy.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/psy.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/res0.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/lib/tone.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/ltmain.sh -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/m4/ogg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/m4/ogg.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/m4/pkg.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/missing -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/test/test.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/test/util.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/test/util.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vorbis.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vorbis.m4 -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/16.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/16.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/16u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/16u.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c0.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c1.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c2.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c3.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c4.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c5.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c6.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c7.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c8.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44c9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44c9.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p0.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p1.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p2.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p3.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p4.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p5.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p6.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p7.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p8.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44p9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44p9.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u0.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u0.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u1.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u1.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u2.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u2.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u3.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u3.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u4.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u4.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u5.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u5.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u6.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u6.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u7.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u7.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u8.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/44u9.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/44u9.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/8.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/8.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/8u.vqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/8u.vqs -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/vqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/vqgen.c -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/vq/vqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/libvorbis/vq/vqgen.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/win32/VS2022/libvorbis/x64/Debug/libvorbis_static.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/win32/VS2022/libvorbis/x64/Release/libvorbis_static.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/win32/VS2022/libvorbisfile/x64/Debug/libvorbisfile_static.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/libvorbis/win32/VS2022/libvorbisfile/x64/Release/libvorbisfile_static.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/OGG/ogg_vorbis_static.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OGG/ogg_vorbis_static.sln -------------------------------------------------------------------------------- /GameGuru Core/SDK/OpenVR/headers/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OpenVR/headers/openvr.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OpenXR/include/openxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OpenXR/include/openxr.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/OpenXR/src/openxr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/OpenXR/src/openxr.cpp -------------------------------------------------------------------------------- /GameGuru Core/SDK/PhotonSDK/Common-cpp/inc/platform_definition.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define _EG_WINDOWS_PLATFORM 1 -------------------------------------------------------------------------------- /GameGuru Core/SDK/Steamworks SDK/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/Steamworks SDK/Readme.txt -------------------------------------------------------------------------------- /GameGuru Core/SDK/Steamworks SDK/public/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /GameGuru Core/SDK/VuzixSDK/inc/iWearSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/VuzixSDK/inc/iWearSDK.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/VuzixSDK/inc/iweardrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/VuzixSDK/inc/iweardrv.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/VuzixSDK/inc/iwrsguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/VuzixSDK/inc/iwrsguid.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/VuzixSDK/inc/iwrstdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/VuzixSDK/inc/iwrstdrv.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/VuzixSDK/inc/iwrstreo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/VuzixSDK/inc/iwrstreo.h -------------------------------------------------------------------------------- /GameGuru Core/SDK/VuzixSDK/lib/iweardrv.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/VuzixSDK/lib/iweardrv.lib -------------------------------------------------------------------------------- /GameGuru Core/SDK/VuzixSDK/lib/iwrstdrv.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/SDK/VuzixSDK/lib/iwrstdrv.lib -------------------------------------------------------------------------------- /GameGuru Core/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru Core/options.txt -------------------------------------------------------------------------------- /GameGuru IDE/About.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/About.cpp -------------------------------------------------------------------------------- /GameGuru IDE/About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/About.h -------------------------------------------------------------------------------- /GameGuru IDE/AutoUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/AutoUpdate.cpp -------------------------------------------------------------------------------- /GameGuru IDE/AutoUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/AutoUpdate.h -------------------------------------------------------------------------------- /GameGuru IDE/BlackBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/BlackBox.cpp -------------------------------------------------------------------------------- /GameGuru IDE/BlackBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/BlackBox.h -------------------------------------------------------------------------------- /GameGuru IDE/Browser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Browser.cpp -------------------------------------------------------------------------------- /GameGuru IDE/Browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Browser.h -------------------------------------------------------------------------------- /GameGuru IDE/BrowserNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/BrowserNew.cpp -------------------------------------------------------------------------------- /GameGuru IDE/BrowserNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/BrowserNew.h -------------------------------------------------------------------------------- /GameGuru IDE/CartMsgDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/CartMsgDialog.cpp -------------------------------------------------------------------------------- /GameGuru IDE/CartMsgDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/CartMsgDialog.h -------------------------------------------------------------------------------- /GameGuru IDE/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ChildFrm.cpp -------------------------------------------------------------------------------- /GameGuru IDE/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ChildFrm.h -------------------------------------------------------------------------------- /GameGuru IDE/CntrItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/CntrItem.cpp -------------------------------------------------------------------------------- /GameGuru IDE/CntrItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/CntrItem.h -------------------------------------------------------------------------------- /GameGuru IDE/DisplayFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/DisplayFilters.cpp -------------------------------------------------------------------------------- /GameGuru IDE/DisplayFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/DisplayFilters.h -------------------------------------------------------------------------------- /GameGuru IDE/DownloadStoreItems/urlDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/DownloadStoreItems/urlDecode.h -------------------------------------------------------------------------------- /GameGuru IDE/EditDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/EditDialog.cpp -------------------------------------------------------------------------------- /GameGuru IDE/EditDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/EditDialog.h -------------------------------------------------------------------------------- /GameGuru IDE/Editor - Copy (2).rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Editor - Copy (2).rc -------------------------------------------------------------------------------- /GameGuru IDE/Editor - Copy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Editor - Copy.rc -------------------------------------------------------------------------------- /GameGuru IDE/Editor.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Editor.aps -------------------------------------------------------------------------------- /GameGuru IDE/Editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Editor.cpp -------------------------------------------------------------------------------- /GameGuru IDE/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Editor.h -------------------------------------------------------------------------------- /GameGuru IDE/Editor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Editor.rc -------------------------------------------------------------------------------- /GameGuru IDE/Editor.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Editor.reg -------------------------------------------------------------------------------- /GameGuru IDE/EditorDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/EditorDoc.cpp -------------------------------------------------------------------------------- /GameGuru IDE/EditorDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/EditorDoc.h -------------------------------------------------------------------------------- /GameGuru IDE/EditorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/EditorView.cpp -------------------------------------------------------------------------------- /GameGuru IDE/EditorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/EditorView.h -------------------------------------------------------------------------------- /GameGuru IDE/EnumProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/EnumProcess.cpp -------------------------------------------------------------------------------- /GameGuru IDE/EnumProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/EnumProcess.h -------------------------------------------------------------------------------- /GameGuru IDE/FPS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/FPS.vcxproj -------------------------------------------------------------------------------- /GameGuru IDE/FPS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/FPS.vcxproj.filters -------------------------------------------------------------------------------- /GameGuru IDE/FileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/FileDialog.cpp -------------------------------------------------------------------------------- /GameGuru IDE/FileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/FileDialog.h -------------------------------------------------------------------------------- /GameGuru IDE/GameGuru IDE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/GameGuru IDE.sln -------------------------------------------------------------------------------- /GameGuru IDE/GameGuru.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/GameGuru.exe.manifest -------------------------------------------------------------------------------- /GameGuru IDE/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Global.cpp -------------------------------------------------------------------------------- /GameGuru IDE/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Global.h -------------------------------------------------------------------------------- /GameGuru IDE/HTTPComm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/HTTPComm.cpp -------------------------------------------------------------------------------- /GameGuru IDE/HTTPComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/HTTPComm.h -------------------------------------------------------------------------------- /GameGuru IDE/HashTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/HashTree.cpp -------------------------------------------------------------------------------- /GameGuru IDE/HashTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/HashTree.h -------------------------------------------------------------------------------- /GameGuru IDE/HelpWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/HelpWizard.cpp -------------------------------------------------------------------------------- /GameGuru IDE/HelpWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/HelpWizard.h -------------------------------------------------------------------------------- /GameGuru IDE/IPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/IPC.cpp -------------------------------------------------------------------------------- /GameGuru IDE/IPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/IPC.h -------------------------------------------------------------------------------- /GameGuru IDE/LoginDialog2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/LoginDialog2.cpp -------------------------------------------------------------------------------- /GameGuru IDE/LoginDialog2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/LoginDialog2.h -------------------------------------------------------------------------------- /GameGuru IDE/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/MainFrm.cpp -------------------------------------------------------------------------------- /GameGuru IDE/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/MainFrm.h -------------------------------------------------------------------------------- /GameGuru IDE/MyTabCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/MyTabCtrl.cpp -------------------------------------------------------------------------------- /GameGuru IDE/MyTabCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/MyTabCtrl.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGAnimCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGAnimCtrl.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGButton.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGCB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGCB.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGColorBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGColorBar.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGDialog.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGDockBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGDockBar.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGDropDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGDropDown.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGFrameWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGFrameWnd.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGInit.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGListCtrl.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGMenuBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGMenuBar.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGPropList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGPropList.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGRegistry.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGTabView.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGToolBar.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/BCGUserTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/BCGUserTool.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/ButtonsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/ButtonsList.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/ColorPage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/ColorPage1.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/ColorPage2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/ColorPage2.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/ColorPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/ColorPopup.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/GLOBALS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/GLOBALS.H -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/ImageHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/ImageHash.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/KeyAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/KeyAssign.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/KeyHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/KeyHelper.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/MenuHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/MenuHash.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/MenuImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/MenuImages.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/MenuPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/MenuPage.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/MousePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/MousePage.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/OptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/OptionsPage.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/RebarState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/RebarState.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/RegPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/RegPath.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/color.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/color.cur -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/copy.bmp -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/copy.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/copy.cur -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/down.bmp -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/fill.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/fill.cur -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/font.bmp -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/hand.cur -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/help.bmp -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/help.ico -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/line.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/line.cur -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/mail.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/mail.bmp -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/move.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/move.cur -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/new.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/new.bmp -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/pen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/pen.cur -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/print.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/print.bmp -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/rect.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/rect.cur -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/tool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/tool.ico -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/up.bmp -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/Res/url.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/Res/url.bmp -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/TrackMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/TrackMouse.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/bcgbarres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/bcgbarres.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/bcgcbver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/bcgcbver.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/bcghelpids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/bcghelpids.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/bcglocalres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/bcglocalres.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/bcgsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/bcgsound.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/bcgtabwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/bcgtabwnd.h -------------------------------------------------------------------------------- /GameGuru IDE/OLDUI/ControlBar/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OLDUI/ControlBar/stdafx.h -------------------------------------------------------------------------------- /GameGuru IDE/ObjectColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ObjectColor.cpp -------------------------------------------------------------------------------- /GameGuru IDE/ObjectColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ObjectColor.h -------------------------------------------------------------------------------- /GameGuru IDE/ObjectProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ObjectProperty.cpp -------------------------------------------------------------------------------- /GameGuru IDE/ObjectProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ObjectProperty.h -------------------------------------------------------------------------------- /GameGuru IDE/OggPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OggPlayer.cpp -------------------------------------------------------------------------------- /GameGuru IDE/OggPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OggPlayer.h -------------------------------------------------------------------------------- /GameGuru IDE/OutputBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OutputBar.cpp -------------------------------------------------------------------------------- /GameGuru IDE/OutputBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/OutputBar.h -------------------------------------------------------------------------------- /GameGuru IDE/Poster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Poster.cpp -------------------------------------------------------------------------------- /GameGuru IDE/Poster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Poster.h -------------------------------------------------------------------------------- /GameGuru IDE/PreviewRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/PreviewRect.cpp -------------------------------------------------------------------------------- /GameGuru IDE/PreviewRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/PreviewRect.h -------------------------------------------------------------------------------- /GameGuru IDE/ProgressSpinner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ProgressSpinner.cpp -------------------------------------------------------------------------------- /GameGuru IDE/ProgressSpinner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ProgressSpinner.h -------------------------------------------------------------------------------- /GameGuru IDE/RCa17900: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/RCa17900 -------------------------------------------------------------------------------- /GameGuru IDE/ResizableDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ResizableDialog.cpp -------------------------------------------------------------------------------- /GameGuru IDE/ResizableDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ResizableDialog.h -------------------------------------------------------------------------------- /GameGuru IDE/RotateByShear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/RotateByShear.h -------------------------------------------------------------------------------- /GameGuru IDE/SampleList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/SampleList.cpp -------------------------------------------------------------------------------- /GameGuru IDE/SampleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/SampleList.h -------------------------------------------------------------------------------- /GameGuru IDE/SerialCode/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/SerialCode/md5.cpp -------------------------------------------------------------------------------- /GameGuru IDE/SerialCode/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/SerialCode/md5.h -------------------------------------------------------------------------------- /GameGuru IDE/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Splash.cpp -------------------------------------------------------------------------------- /GameGuru IDE/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Splash.h -------------------------------------------------------------------------------- /GameGuru IDE/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/StdAfx.cpp -------------------------------------------------------------------------------- /GameGuru IDE/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/StdAfx.h -------------------------------------------------------------------------------- /GameGuru IDE/StoreButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/StoreButton.cpp -------------------------------------------------------------------------------- /GameGuru IDE/StoreButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/StoreButton.h -------------------------------------------------------------------------------- /GameGuru IDE/StringFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/StringFunc.cpp -------------------------------------------------------------------------------- /GameGuru IDE/StringFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/StringFunc.h -------------------------------------------------------------------------------- /GameGuru IDE/TCExpand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/TCExpand.h -------------------------------------------------------------------------------- /GameGuru IDE/TCIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/TCIterator.h -------------------------------------------------------------------------------- /GameGuru IDE/TCPersist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/TCPersist.h -------------------------------------------------------------------------------- /GameGuru IDE/Tab1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Tab1.cpp -------------------------------------------------------------------------------- /GameGuru IDE/Tab1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Tab1.h -------------------------------------------------------------------------------- /GameGuru IDE/Tab2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Tab2.cpp -------------------------------------------------------------------------------- /GameGuru IDE/Tab2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Tab2.h -------------------------------------------------------------------------------- /GameGuru IDE/Tab3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Tab3.cpp -------------------------------------------------------------------------------- /GameGuru IDE/Tab3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Tab3.h -------------------------------------------------------------------------------- /GameGuru IDE/TabCtrlSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/TabCtrlSSL.cpp -------------------------------------------------------------------------------- /GameGuru IDE/TabCtrlSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/TabCtrlSSL.h -------------------------------------------------------------------------------- /GameGuru IDE/TabPageSSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/TabPageSSL.cpp -------------------------------------------------------------------------------- /GameGuru IDE/TabPageSSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/TabPageSSL.h -------------------------------------------------------------------------------- /GameGuru IDE/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/Thread.h -------------------------------------------------------------------------------- /GameGuru IDE/UpdateCheckThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/UpdateCheckThread.cpp -------------------------------------------------------------------------------- /GameGuru IDE/UpdateCheckThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/UpdateCheckThread.h -------------------------------------------------------------------------------- /GameGuru IDE/UploadGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/UploadGame.cpp -------------------------------------------------------------------------------- /GameGuru IDE/UploadGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/UploadGame.h -------------------------------------------------------------------------------- /GameGuru IDE/UploadThread2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/UploadThread2.cpp -------------------------------------------------------------------------------- /GameGuru IDE/UploadThread2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/UploadThread2.h -------------------------------------------------------------------------------- /GameGuru IDE/VideoList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/VideoList.cpp -------------------------------------------------------------------------------- /GameGuru IDE/VideoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/VideoList.h -------------------------------------------------------------------------------- /GameGuru IDE/VistaCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/VistaCheck.cpp -------------------------------------------------------------------------------- /GameGuru IDE/VistaTools.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/VistaTools.cxx -------------------------------------------------------------------------------- /GameGuru IDE/WorkspaceBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/WorkspaceBar.cpp -------------------------------------------------------------------------------- /GameGuru IDE/WorkspaceBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/WorkspaceBar.h -------------------------------------------------------------------------------- /GameGuru IDE/ZSplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ZSplitter.cpp -------------------------------------------------------------------------------- /GameGuru IDE/ZSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ZSplitter.h -------------------------------------------------------------------------------- /GameGuru IDE/ZSplitterDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ZSplitterDlg.cpp -------------------------------------------------------------------------------- /GameGuru IDE/ZSplitterDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ZSplitterDlg.h -------------------------------------------------------------------------------- /GameGuru IDE/ZSplitterDlgEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ZSplitterDlgEx.cpp -------------------------------------------------------------------------------- /GameGuru IDE/ZSplitterDlgEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ZSplitterDlgEx.h -------------------------------------------------------------------------------- /GameGuru IDE/ZipArchive.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ZipArchive.lib -------------------------------------------------------------------------------- /GameGuru IDE/ZipArchiveD.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/ZipArchiveD.lib -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGame.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGame.h -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameBuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameBuild.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameBuild.h -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameKeys.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameKeys.h -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameLevel.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameLevel.h -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameLight.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameLight.h -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameMultiplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameMultiplayer.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameMultiplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameMultiplayer.h -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameProject.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameProject.h -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameWeapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameWeapons.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cBuildGameWeapons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cBuildGameWeapons.h -------------------------------------------------------------------------------- /GameGuru IDE/cControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cControls.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cControls.h -------------------------------------------------------------------------------- /GameGuru IDE/cCredits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cCredits.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cCredits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cCredits.h -------------------------------------------------------------------------------- /GameGuru IDE/cDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cDebug.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cDebug.h -------------------------------------------------------------------------------- /GameGuru IDE/cDialog1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cDialog1.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cDialog1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cDialog1.h -------------------------------------------------------------------------------- /GameGuru IDE/cDialogEnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cDialogEnd.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cDialogEnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cDialogEnd.h -------------------------------------------------------------------------------- /GameGuru IDE/cDialogFront.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cDialogFront.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cDialogFront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cDialogFront.h -------------------------------------------------------------------------------- /GameGuru IDE/cFPIWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cFPIWizard.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cFPIWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cFPIWizard.h -------------------------------------------------------------------------------- /GameGuru IDE/cFront.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cFront.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cFront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cFront.h -------------------------------------------------------------------------------- /GameGuru IDE/cLevelResize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLevelResize.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cLevelResize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLevelResize.h -------------------------------------------------------------------------------- /GameGuru IDE/cLibraryImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLibraryImage.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cLibraryImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLibraryImage.h -------------------------------------------------------------------------------- /GameGuru IDE/cLibraryTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLibraryTree.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cLibraryTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLibraryTree.h -------------------------------------------------------------------------------- /GameGuru IDE/cLibraryWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLibraryWindow.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cLibraryWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLibraryWindow.h -------------------------------------------------------------------------------- /GameGuru IDE/cLibraryWindowNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLibraryWindowNew.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cLibraryWindowNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cLibraryWindowNew.h -------------------------------------------------------------------------------- /GameGuru IDE/cMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cMessages.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cMessages.h -------------------------------------------------------------------------------- /GameGuru IDE/cNewProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cNewProject.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cNewProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cNewProject.h -------------------------------------------------------------------------------- /GameGuru IDE/cPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cPopup.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cPopup.h -------------------------------------------------------------------------------- /GameGuru IDE/cPreferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cPreferences.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cPreferences.h -------------------------------------------------------------------------------- /GameGuru IDE/cProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cProperty.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cProperty.h -------------------------------------------------------------------------------- /GameGuru IDE/cTestGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cTestGame.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cTestGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cTestGame.h -------------------------------------------------------------------------------- /GameGuru IDE/cVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cVideo.cpp -------------------------------------------------------------------------------- /GameGuru IDE/cVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/cVideo.h -------------------------------------------------------------------------------- /GameGuru IDE/explorer1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/explorer1.cpp -------------------------------------------------------------------------------- /GameGuru IDE/explorer1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/explorer1.h -------------------------------------------------------------------------------- /GameGuru IDE/messages.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/messages.mc -------------------------------------------------------------------------------- /GameGuru IDE/psapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/psapi.h -------------------------------------------------------------------------------- /GameGuru IDE/res/Editor.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/Editor.rc2 -------------------------------------------------------------------------------- /GameGuru IDE/res/GameToolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/GameToolbar.bmp -------------------------------------------------------------------------------- /GameGuru IDE/res/Messages_ENU.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/Messages_ENU.bin -------------------------------------------------------------------------------- /GameGuru IDE/res/Messages_GER.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/Messages_GER.bin -------------------------------------------------------------------------------- /GameGuru IDE/res/ModeToolbar3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/ModeToolbar3.bmp -------------------------------------------------------------------------------- /GameGuru IDE/res/StandardToolBar2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/StandardToolBar2.bmp -------------------------------------------------------------------------------- /GameGuru IDE/res/TerrainToolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/TerrainToolbar.bmp -------------------------------------------------------------------------------- /GameGuru IDE/res/WaypointToolBar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/WaypointToolBar.bmp -------------------------------------------------------------------------------- /GameGuru IDE/res/ZoomToolbar2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/ZoomToolbar2.bmp -------------------------------------------------------------------------------- /GameGuru IDE/res/editor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/editor.ico -------------------------------------------------------------------------------- /GameGuru IDE/res/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/logo.bmp -------------------------------------------------------------------------------- /GameGuru IDE/res/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/messages.h -------------------------------------------------------------------------------- /GameGuru IDE/res/messages.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0x9,0x1 2 | 1 11 "Messages_ENU.bin" 3 | -------------------------------------------------------------------------------- /GameGuru IDE/res/update_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/res/update_l.bmp -------------------------------------------------------------------------------- /GameGuru IDE/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/resource.h -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/codec.h -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/ogg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/ogg.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/ogg_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/ogg_d.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/ogg_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/ogg_static.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/ogg_static_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/ogg_static_d.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/vorbis.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/vorbis.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/vorbis_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/vorbis_d.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/vorbis_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/vorbis_static.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/vorbis_static_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/vorbis_static_d.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/vorbisenc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/vorbisenc.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/vorbisenc_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/vorbisenc_d.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/vorbisfile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/vorbisfile.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/lib/vorbisfile_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/lib/vorbisfile_d.lib -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/ogg/ogg.h -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/ogg/os_types.h -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/vorbisenc.h -------------------------------------------------------------------------------- /GameGuru IDE/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/Appnote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/Appnote.txt -------------------------------------------------------------------------------- /GameGuru IDE/zip/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/StdAfx.cpp -------------------------------------------------------------------------------- /GameGuru IDE/zip/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/StdAfx.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipArchive.cpp -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipArchive.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipArchive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipArchive.sln -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipArchive.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipArchive.vcproj -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipAutoBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipAutoBuffer.cpp -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipAutoBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipAutoBuffer.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipBigFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipBigFile.cpp -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipBigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipBigFile.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipCentralDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipCentralDir.cpp -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipCentralDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipCentralDir.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipException.cpp -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipException.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipFileHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipFileHeader.cpp -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipFileHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipFileHeader.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipInternalInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipInternalInfo.cpp -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipInternalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipInternalInfo.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipStorage.cpp -------------------------------------------------------------------------------- /GameGuru IDE/zip/ZipStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/ZipStorage.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zconf.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/README -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/adler32.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/compress.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/crc32.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/crc32.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/deflate.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/deflate.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/gzclose.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/gzguts.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/gzlib.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/gzread.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/gzwrite.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/infback.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/inffast.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/inffast.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/inffixed.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/inflate.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/inflate.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/inftrees.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/inftrees.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/make_vms.com -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/treebuild.xml -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/trees.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/trees.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/uncompr.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/zconf.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/zlib.3 -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/zlib.3.pdf -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/zlib.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/zlib.map -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/zutil.c -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib-1.2.7/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib-1.2.7/zutil.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib.h -------------------------------------------------------------------------------- /GameGuru IDE/zip/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zip/zlib.lib -------------------------------------------------------------------------------- /GameGuru IDE/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/GameGuru IDE/zlib.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dark-Basic-Software-Limited/GameGuruRepo/HEAD/README.md --------------------------------------------------------------------------------