├── .gitattributes ├── .github └── workflows │ └── cibuild.yml ├── .gitignore ├── CHANGELOG.md ├── CHANGELOG.old ├── CMakeLists.txt ├── Images ├── samvulkan_1.png ├── samvulkan_2.png ├── samvulkan_3.png ├── samvulkan_4.png ├── samvulkan_5.png ├── samvulkan_6.png ├── samxplus_1.png ├── samxplus_2.png └── samxplus_3.png ├── LICENSE ├── README.md ├── SamTFE ├── Bin │ └── .gitkeep ├── Controls │ ├── 00-Default.ctl │ ├── 00-Default.des │ ├── 01-Keyboard.ctl │ ├── 01-Keyboard.des │ ├── 02-PantherXL.ctl │ ├── 02-PantherXL.des │ ├── 03-Wingman Extreme.ctl │ ├── 03-Wingman Extreme.des │ ├── 04-Wingman GamePad.ctl │ ├── 04-Wingman GamePad.des │ ├── 05-2nd Mouse.ctl │ ├── 05-2nd Mouse.des │ ├── 10-DEN.ctl │ ├── 10-DEN.des │ ├── Controls0.ctl │ ├── Controls1.ctl │ ├── Controls2.ctl │ ├── Controls3.ctl │ ├── Controls4.ctl │ ├── Controls5.ctl │ ├── Controls6.ctl │ ├── Controls7.ctl │ └── System │ │ └── Common.ctl ├── Data │ ├── Default.ifr │ ├── Defaults │ │ └── .gitkeep │ ├── IFeel.txt │ ├── Logitech.ifr │ ├── NoCRC.lst │ ├── SED_TipOfTheDay.txt │ └── Var │ │ ├── DefaultPlayer.var │ │ └── Sam_Version.var ├── Demos │ ├── Default.ini │ ├── auto-demo0001.dem │ ├── auto-demo0001.des │ ├── auto-demo0001.ini │ ├── auto-demo0001Tbn.tex │ ├── auto-demo0002.dem │ ├── auto-demo0002.des │ ├── auto-demo0002.ini │ ├── auto-demo0002Tbn.tex │ ├── auto-demo0003.des │ ├── auto-demoMP0001.dem │ ├── auto-demoMP0001.des │ ├── auto-demoMP0001.ini │ ├── auto-demoMP0001Tbn.tex │ ├── auto-demoMP0002.dem │ ├── auto-demoMP0002.des │ ├── auto-demoMP0002.ini │ └── auto-demoMP0002Tbn.tex ├── GameAgent │ ├── GameAgent.txt │ ├── main.py │ ├── run │ ├── server.py │ └── user.py ├── Help │ └── ShellSymbols.txt ├── Levels │ └── .gitkeep ├── ModEXT.txt ├── Mods │ ├── SeriousSam.des │ ├── SeriousSam │ │ ├── BaseBrowseInclude.lst │ │ └── BaseWriteInclude.lst │ ├── SeriousSamTbn.tex │ ├── XPLUS.des │ ├── XPLUS │ │ └── Bin │ │ │ └── .gitkeep │ └── XPLUSTbn.tex ├── Players │ └── about_this_directory.txt ├── SE1_10b.gro ├── SaveGame │ ├── Network │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player0 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player1 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player2 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player3 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player4 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player5 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player6 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player7 │ │ └── Quick │ │ │ └── .gitkeep │ └── SplitScreen │ │ └── Quick │ │ └── .gitkeep ├── Scripts │ ├── Commands │ │ ├── kick.ini │ │ ├── list.ini │ │ ├── rkick.ini │ │ └── rlist.ini │ ├── CustomOptions │ │ ├── GFX-AdvancedRendering.cfg │ │ ├── GFX-AdvancedRendering.des │ │ ├── GFX-RenderingOptions.cfg │ │ ├── GFX-RenderingOptions.des │ │ ├── HUD-Options.cfg │ │ ├── HUD-Options.des │ │ ├── NET-PredictionOptions.cfg │ │ └── NET-PredictionOptions.des │ ├── Dedicated │ │ ├── DefaultCoop │ │ │ ├── 1_begin.ini │ │ │ ├── 1_end.ini │ │ │ └── init.ini │ │ ├── DefaultFragmatch │ │ │ ├── 1_begin.ini │ │ │ ├── 1_end.ini │ │ │ └── init.ini │ │ ├── DefaultScorematch │ │ │ ├── 1_begin.ini │ │ │ ├── 1_end.ini │ │ │ └── init.ini │ │ └── DemoCoop │ │ │ ├── 1_begin.ini │ │ │ ├── 1_end.ini │ │ │ ├── 2_begin.ini │ │ │ ├── 2_end.ini │ │ │ ├── 3_begin.ini │ │ │ ├── 3_end.ini │ │ │ └── init.ini │ ├── Dedicated_startup.ini │ ├── GLSettings │ │ ├── 3Dfx-V1.ini │ │ ├── 3Dfx-V2.ini │ │ ├── 3Dfx-V3.ini │ │ ├── 3Dfx-V5.ini │ │ ├── ATI-FGL.ini │ │ ├── ATI-Maxx.ini │ │ ├── ATI-R128.ini │ │ ├── ATI-RPRO.ini │ │ ├── ATI-Radeon.ini │ │ ├── Default.ini │ │ ├── GLSettings.lst │ │ ├── I-i740.ini │ │ ├── I-i752.ini │ │ ├── Initial.ini │ │ ├── MGA-G200.ini │ │ ├── MGA-G400.ini │ │ ├── NV-GF.ini │ │ ├── NV-TNT.ini │ │ ├── PVR-Kyro.ini │ │ ├── RAM.ini │ │ ├── S3-S2K.ini │ │ └── S3-S4.ini │ ├── Game_startup.ini │ ├── Menu │ │ ├── ApplyShadowmaps.ini │ │ ├── ApplyTextures.ini │ │ ├── ApplyVideo.ini │ │ ├── GameOptions.cfg │ │ ├── RenderingOptions.cfg │ │ └── SPOptions.cfg │ ├── NetSettings │ │ ├── 128k-DSL.des │ │ ├── 128k-DSL.ini │ │ ├── 1mb-Cable.des │ │ ├── 1mb-Cable.ini │ │ ├── 256k-DSL.des │ │ ├── 256k-DSL.ini │ │ ├── 2mb-Cable.des │ │ ├── 2mb-Cable.ini │ │ ├── 33.6k-Dialup.des │ │ ├── 33.6k-Dialup.ini │ │ ├── 3mb-Cable.des │ │ ├── 3mb-Cable.ini │ │ ├── 512k-DSL.des │ │ ├── 512k-DSL.ini │ │ ├── 56-normal.des │ │ ├── 56-normal.ini │ │ ├── 56k-Dialup.des │ │ ├── 56k-Dialup.ini │ │ ├── 56k-quality.des │ │ ├── 56k-quality.ini │ │ ├── 5mb-Fiber.des │ │ ├── 5mb-Fiber.ini │ │ ├── 64k-ISDN.des │ │ ├── 64k-ISDN.ini │ │ ├── 768k-DSL.des │ │ ├── 768k-DSL.ini │ │ ├── DSLCable.des │ │ ├── DSLCable.ini │ │ ├── ISDN.des │ │ ├── ISDN.ini │ │ ├── LAN.des │ │ ├── LAN.ini │ │ ├── OldModem.des │ │ └── OldModem.ini │ └── WorldEditorKeys │ │ ├── F2.ini │ │ ├── F3.ini │ │ ├── F4.ini │ │ ├── MiddleMouse.ini │ │ ├── Shift_F2.ini │ │ ├── Shift_F3.ini │ │ └── Shift_F4.ini ├── Sources │ ├── CMakeLists.txt │ ├── DecodeReport │ │ ├── DecodeReport.cpp │ │ ├── DecodeReport.vcxproj │ │ ├── DecodeReport.vcxproj.filters │ │ ├── DecodeReport.vcxproj.user │ │ ├── StdAfx.cpp │ │ └── StdAfx.h │ ├── DedicatedServer │ │ ├── DedicatedServer.cpp │ │ ├── DedicatedServer.rc │ │ ├── DedicatedServer.vcxproj │ │ ├── DedicatedServer.vcxproj.filters │ │ ├── DedicatedServer.vcxproj.user │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── icon1.ico │ │ └── resource.h │ ├── Depend │ │ ├── Depend.vcxproj │ │ ├── Depend.vcxproj.filters │ │ ├── Depend.vcxproj.user │ │ ├── Dependency.cpp │ │ ├── Dependency.h │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ └── UtilityDepend.cpp │ ├── Ecc │ │ ├── Ecc.vcxproj │ │ ├── Ecc.vcxproj.filters │ │ ├── Ecc.vcxproj.user │ │ ├── Main.cpp │ │ ├── Main.h │ │ ├── Parser.hpp │ │ ├── Parser.y │ │ ├── Scanner.l │ │ ├── StdH.h │ │ ├── bison.simple │ │ └── unistd.h │ ├── Engine │ │ ├── Base │ │ │ ├── Anim.cpp │ │ │ ├── Anim.h │ │ │ ├── Assert.h │ │ │ ├── Base.h │ │ │ ├── CRC.cpp │ │ │ ├── CRC.h │ │ │ ├── CRCTable.cpp │ │ │ ├── CRCTable.h │ │ │ ├── CTString.cpp │ │ │ ├── CTString.h │ │ │ ├── CTString.inl │ │ │ ├── Changeable.cpp │ │ │ ├── Changeable.h │ │ │ ├── ChangeableRT.h │ │ │ ├── Console.cpp │ │ │ ├── Console.h │ │ │ ├── Console_internal.h │ │ │ ├── Directory.cpp │ │ │ ├── DynamicLoader.h │ │ │ ├── ErrorReporting.cpp │ │ │ ├── ErrorReporting.h │ │ │ ├── ErrorTable.h │ │ │ ├── FLEX.skl │ │ │ ├── FileName.cpp │ │ │ ├── FileName.h │ │ │ ├── FileSystem.h │ │ │ ├── GroupFile.h │ │ │ ├── IFeel.cpp │ │ │ ├── IFeel.h │ │ │ ├── Input.cpp │ │ │ ├── Input.h │ │ │ ├── KeyNames.h │ │ │ ├── ListIterator.inl │ │ │ ├── Lists.cpp │ │ │ ├── Lists.h │ │ │ ├── Lists.inl │ │ │ ├── Memory.cpp │ │ │ ├── Memory.h │ │ │ ├── NullSynchronization.cpp │ │ │ ├── Parser.hpp │ │ │ ├── Parser.y │ │ │ ├── ParsingSymbols.h │ │ │ ├── Priority.inl │ │ │ ├── Profiling.cpp │ │ │ ├── Profiling.h │ │ │ ├── ProfilingEnabled.h │ │ │ ├── ProgressHook.cpp │ │ │ ├── ProgressHook.h │ │ │ ├── Protection.cpp │ │ │ ├── Protection.h │ │ │ ├── Registry.cpp │ │ │ ├── Registry.h │ │ │ ├── Relations.cpp │ │ │ ├── Relations.h │ │ │ ├── ReplaceFile.cpp │ │ │ ├── ReplaceFile.h │ │ │ ├── SDL │ │ │ │ ├── SDLEvents.cpp │ │ │ │ ├── SDLEvents.h │ │ │ │ ├── SDLInput.cpp │ │ │ │ ├── SDLSynchronization.cpp │ │ │ │ └── SDLTimer.cpp │ │ │ ├── Scanner.l │ │ │ ├── Serial.cpp │ │ │ ├── Serial.h │ │ │ ├── Shell.cpp │ │ │ ├── Shell.h │ │ │ ├── ShellTypes.cpp │ │ │ ├── Shell_internal.h │ │ │ ├── StackDump.cpp │ │ │ ├── Statistics.cpp │ │ │ ├── Statistics.h │ │ │ ├── Statistics_Internal.h │ │ │ ├── Stream.cpp │ │ │ ├── Stream.h │ │ │ ├── Synchronization.h │ │ │ ├── SystemSpecificInclude.h │ │ │ ├── ThreadLocalStorage.h │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── Timer.inl │ │ │ ├── Translation.cpp │ │ │ ├── Translation.h │ │ │ ├── TranslationPair.h │ │ │ ├── Types.h │ │ │ ├── Unix │ │ │ │ ├── UnixDynamicLoader.cpp │ │ │ │ ├── UnixFileSystem.cpp │ │ │ │ ├── UnixSynchronization.cpp │ │ │ │ └── UnixSynchronization.h │ │ │ ├── Unzip.cpp │ │ │ ├── Unzip.h │ │ │ ├── Updateable.cpp │ │ │ ├── Updateable.h │ │ │ ├── UpdateableRT.h │ │ │ ├── Win32 │ │ │ │ ├── Win32DynamicLoader.cpp │ │ │ │ ├── Win32FileSystem.cpp │ │ │ │ ├── Win32Input.cpp │ │ │ │ ├── Win32Synchronization.cpp │ │ │ │ └── Win32Timer.cpp │ │ │ ├── bison.simple │ │ │ ├── iconvlite.cpp │ │ │ └── iconvlite.h │ │ ├── Brushes │ │ │ ├── Brush.cpp │ │ │ ├── Brush.h │ │ │ ├── BrushArchive.cpp │ │ │ ├── BrushArchive.h │ │ │ ├── BrushBase.h │ │ │ ├── BrushExport.cpp │ │ │ ├── BrushIO.cpp │ │ │ ├── BrushImport.cpp │ │ │ ├── BrushMip.cpp │ │ │ ├── BrushPolygon.cpp │ │ │ ├── BrushSector.cpp │ │ │ ├── BrushShadows.cpp │ │ │ ├── BrushTransformed.h │ │ │ └── BrushTriangularize.cpp │ │ ├── Build.h │ │ ├── Classes │ │ │ ├── BaseEvents.es │ │ │ ├── MovableBrushEntity.es │ │ │ ├── MovableEntity.es │ │ │ ├── MovableModelEntity.es │ │ │ └── PlayerEntity.es │ │ ├── CurrentVersion.h │ │ ├── Engine.cpp │ │ ├── Engine.h │ │ ├── Engine.vcxproj │ │ ├── Engine.vcxproj.filters │ │ ├── Engine.vcxproj.user │ │ ├── Entities │ │ │ ├── Entity.cpp │ │ │ ├── Entity.h │ │ │ ├── EntityClass.cpp │ │ │ ├── EntityClass.h │ │ │ ├── EntityCollision.cpp │ │ │ ├── EntityCollision.h │ │ │ ├── EntityCopying.cpp │ │ │ ├── EntityEvent.h │ │ │ ├── EntityPointer.h │ │ │ ├── EntityProperties.cpp │ │ │ ├── EntityProperties.h │ │ │ ├── FieldBSPTesting.cpp │ │ │ ├── FieldSettings.h │ │ │ ├── InternalClasses.h │ │ │ ├── LastPositions.cpp │ │ │ ├── LastPositions.h │ │ │ ├── NearestPolygon.cpp │ │ │ ├── PlayerCharacter.cpp │ │ │ ├── PlayerCharacter.h │ │ │ ├── Precaching.h │ │ │ └── ShadingInfo.h │ │ ├── GameAgent │ │ │ ├── GameAgent.cpp │ │ │ ├── GameAgent.h │ │ │ └── MSLegacy.h │ │ ├── GameShell.h │ │ ├── Graphics │ │ │ ├── Adapter.cpp │ │ │ ├── Adapter.h │ │ │ ├── Benchmark.cpp │ │ │ ├── Color.cpp │ │ │ ├── Color.h │ │ │ ├── DepthCheck.cpp │ │ │ ├── DisplayMode.cpp │ │ │ ├── DisplayMode.h │ │ │ ├── DrawPort.cpp │ │ │ ├── DrawPort.h │ │ │ ├── DrawPort_Particles.cpp │ │ │ ├── DrawPort_RenderScene.cpp │ │ │ ├── Fog.cpp │ │ │ ├── Fog.h │ │ │ ├── Fog_internal.h │ │ │ ├── Font.cpp │ │ │ ├── Font.h │ │ │ ├── GfxLibrary.cpp │ │ │ ├── GfxLibrary.h │ │ │ ├── GfxProfile.cpp │ │ │ ├── GfxProfile.h │ │ │ ├── Gfx_Direct3D.cpp │ │ │ ├── Gfx_Direct3D_Colors.cpp │ │ │ ├── Gfx_Direct3D_Textures.cpp │ │ │ ├── Gfx_OpenGL.cpp │ │ │ ├── Gfx_OpenGL.h │ │ │ ├── Gfx_OpenGL_Textures.cpp │ │ │ ├── Gfx_Vulkan.cpp │ │ │ ├── Gfx_Vulkan_Textures.cpp │ │ │ ├── Gfx_wrapper.cpp │ │ │ ├── Gfx_wrapper.h │ │ │ ├── Gfx_wrapper_Direct3D.cpp │ │ │ ├── Gfx_wrapper_OpenGL.cpp │ │ │ ├── Gfx_wrapper_Vulkan.cpp │ │ │ ├── Graphics.cpp │ │ │ ├── ImageInfo.cpp │ │ │ ├── ImageInfo.h │ │ │ ├── MultiMonitor.cpp │ │ │ ├── MultiMonitor.h │ │ │ ├── OpenGL.h │ │ │ ├── Raster.cpp │ │ │ ├── Raster.h │ │ │ ├── RenderPoly.h │ │ │ ├── RenderScene.h │ │ │ ├── SDL │ │ │ │ ├── SDLAdapter.cpp │ │ │ │ ├── SDLOpenGL.cpp │ │ │ │ └── SDL_vulkan.h │ │ │ ├── Shader.cpp │ │ │ ├── Shader.h │ │ │ ├── ShadowMap.cpp │ │ │ ├── ShadowMap.h │ │ │ ├── Stereo.cpp │ │ │ ├── Stereo.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── TextureEffects.cpp │ │ │ ├── TextureEffects.h │ │ │ ├── TextureRender.cpp │ │ │ ├── Vertex.h │ │ │ ├── ViewPort.cpp │ │ │ ├── ViewPort.h │ │ │ ├── Vulkan │ │ │ │ ├── Shaders │ │ │ │ │ ├── Compiled │ │ │ │ │ │ ├── OcclusionCheckFragSpv.h │ │ │ │ │ │ ├── OcclusionCheckVertSpv.h │ │ │ │ │ │ ├── TexturedAlphaFragSpv.h │ │ │ │ │ │ ├── TexturedFragSpv.h │ │ │ │ │ │ └── TexturedVertSpv.h │ │ │ │ │ ├── CompiledSpirv │ │ │ │ │ │ ├── OcclusionCheckFrag.spv │ │ │ │ │ │ ├── OcclusionCheckVert.spv │ │ │ │ │ │ ├── TexturedAlphaFrag.spv │ │ │ │ │ │ ├── TexturedFrag.spv │ │ │ │ │ │ └── TexturedVert.spv │ │ │ │ │ ├── GenerateSpirv.bat │ │ │ │ │ ├── GenerateSpirvToC.py │ │ │ │ │ ├── OcclusionCheck.frag │ │ │ │ │ ├── OcclusionCheck.vert │ │ │ │ │ ├── Textured.frag │ │ │ │ │ ├── Textured.vert │ │ │ │ │ └── TexturedAlpha.frag │ │ │ │ ├── SvkDescriptors.cpp │ │ │ │ ├── SvkDynamicBuffers.cpp │ │ │ │ ├── SvkMain.h │ │ │ │ ├── SvkMatrix.cpp │ │ │ │ ├── SvkMemoryPool.cpp │ │ │ │ ├── SvkMemoryPool.h │ │ │ │ ├── SvkPipelineStates.h │ │ │ │ ├── SvkPipelines.cpp │ │ │ │ ├── SvkQueries.cpp │ │ │ │ ├── SvkSamplerStates.h │ │ │ │ ├── SvkSamplers.cpp │ │ │ │ ├── SvkShaders.cpp │ │ │ │ ├── SvkStaticHashTable.h │ │ │ │ ├── SvkSwapchain.cpp │ │ │ │ ├── SvkTextures.cpp │ │ │ │ ├── SvkUtils.cpp │ │ │ │ ├── SvkVertex.h │ │ │ │ ├── VulkanInclude.h │ │ │ │ ├── _vk_mem_alloc_old.h │ │ │ │ ├── vk_mem_alloc.cpp │ │ │ │ └── vk_mem_alloc.h │ │ │ ├── Win32 │ │ │ │ ├── Win32Adapter.cpp │ │ │ │ └── Win32OpenGL.cpp │ │ │ ├── gl_functions.h │ │ │ └── gl_types.h │ │ ├── Light │ │ │ ├── Gradient.h │ │ │ ├── LayerMaker.cpp │ │ │ ├── LayerMixer.cpp │ │ │ ├── LensFlares.h │ │ │ ├── LightSource.cpp │ │ │ ├── LightSource.h │ │ │ └── Shadows_internal.h │ │ ├── Math │ │ │ ├── AABBox.h │ │ │ ├── Clipping.inl │ │ │ ├── FixInt.h │ │ │ ├── Float.cpp │ │ │ ├── Float.h │ │ │ ├── Functions.cpp │ │ │ ├── Functions.h │ │ │ ├── Geometry.cpp │ │ │ ├── Geometry.h │ │ │ ├── Geometry.inl │ │ │ ├── Geometry_DOUBLE.cpp │ │ │ ├── Matrix.h │ │ │ ├── OBBox.h │ │ │ ├── Object3D.cpp │ │ │ ├── Object3D.h │ │ │ ├── Object3D_CSG.cpp │ │ │ ├── Object3D_IO.cpp │ │ │ ├── ObjectSector.cpp │ │ │ ├── Placement.cpp │ │ │ ├── Placement.h │ │ │ ├── Plane.h │ │ │ ├── Projection.cpp │ │ │ ├── Projection.h │ │ │ ├── Projection_DOUBLE.h │ │ │ ├── Projection_Isometric.cpp │ │ │ ├── Projection_Parallel.cpp │ │ │ ├── Projection_Perspective.cpp │ │ │ ├── Projection_Simple.cpp │ │ │ ├── Projection_Simple_DOUBLE.cpp │ │ │ ├── Quaternion.h │ │ │ ├── TextureMapping.cpp │ │ │ ├── TextureMapping.h │ │ │ └── Vector.h │ │ ├── Models │ │ │ ├── EditModel.cpp │ │ │ ├── EditModel.h │ │ │ ├── MipMaker.cpp │ │ │ ├── MipMaker.h │ │ │ ├── Model.cpp │ │ │ ├── Model.h │ │ │ ├── ModelData.h │ │ │ ├── ModelObject.h │ │ │ ├── ModelProfile.cpp │ │ │ ├── ModelProfile.h │ │ │ ├── Model_internal.h │ │ │ ├── Normals.cpp │ │ │ ├── Normals.h │ │ │ ├── RenderModel.cpp │ │ │ ├── RenderModel.h │ │ │ ├── RenderModel_Mask.cpp │ │ │ ├── RenderModel_View.cpp │ │ │ ├── RenderModel_internal.h │ │ │ └── VertexGetting.cpp │ │ ├── Network │ │ │ ├── ActionBuffer.cpp │ │ │ ├── ActionBuffer.h │ │ │ ├── Buffer.cpp │ │ │ ├── Buffer.h │ │ │ ├── CPacket.cpp │ │ │ ├── CPacket.h │ │ │ ├── ClientInterface.cpp │ │ │ ├── ClientInterface.h │ │ │ ├── Common.h │ │ │ ├── CommunicationInterface.cpp │ │ │ ├── CommunicationInterface.h │ │ │ ├── Compression.cpp │ │ │ ├── Compression.h │ │ │ ├── Diff.cpp │ │ │ ├── Diff.h │ │ │ ├── EMsgBuffer.cpp │ │ │ ├── EMsgBuffer.h │ │ │ ├── EntityHashing.cpp │ │ │ ├── EntityHashing.h │ │ │ ├── LevelChange.h │ │ │ ├── MessageDispatcher.cpp │ │ │ ├── MessageDispatcher.h │ │ │ ├── Network.cpp │ │ │ ├── Network.h │ │ │ ├── NetworkMessage.cpp │ │ │ ├── NetworkMessage.h │ │ │ ├── NetworkProfile.cpp │ │ │ ├── NetworkProfile.h │ │ │ ├── Packet.cpp │ │ │ ├── Packet.h │ │ │ ├── PlayerBuffer.cpp │ │ │ ├── PlayerBuffer.h │ │ │ ├── PlayerSource.cpp │ │ │ ├── PlayerSource.h │ │ │ ├── PlayerTarget.cpp │ │ │ ├── PlayerTarget.h │ │ │ ├── Server.cpp │ │ │ ├── Server.h │ │ │ ├── SessionSocket.h │ │ │ ├── SessionState.cpp │ │ │ └── SessionState.h │ │ ├── Rendering │ │ │ ├── RenCache.cpp │ │ │ ├── RendASER.cpp │ │ │ ├── RendClip.cpp │ │ │ ├── RendMisc.cpp │ │ │ ├── Render.cpp │ │ │ ├── Render.h │ │ │ ├── RenderAdding.cpp │ │ │ ├── RenderBrushes.cpp │ │ │ ├── RenderModels.cpp │ │ │ ├── RenderProfile.cpp │ │ │ ├── RenderProfile.h │ │ │ ├── Render_internal.h │ │ │ └── SelectOnRender.cpp │ │ ├── Ska │ │ │ ├── AnimSet.cpp │ │ │ ├── AnimSet.h │ │ │ ├── Mesh.cpp │ │ │ ├── Mesh.h │ │ │ ├── ModelInstance.cpp │ │ │ ├── ModelInstance.h │ │ │ ├── ParsingSmbs.h │ │ │ ├── RMRender.cpp │ │ │ ├── RMRenderMask.cpp │ │ │ ├── Render.h │ │ │ ├── Skeleton.cpp │ │ │ ├── Skeleton.h │ │ │ ├── StringTable.cpp │ │ │ ├── StringTable.h │ │ │ ├── bison.simple │ │ │ ├── smcFlex.skl │ │ │ ├── smcPars.hpp │ │ │ ├── smcPars.y │ │ │ ├── smcScan.l │ │ │ └── smcScwin.l │ │ ├── Sound │ │ │ ├── DSOUND.H │ │ │ ├── SoundData.cpp │ │ │ ├── SoundData.h │ │ │ ├── SoundDecoder.cpp │ │ │ ├── SoundDecoder.h │ │ │ ├── SoundLibrary.cpp │ │ │ ├── SoundLibrary.h │ │ │ ├── SoundListener.h │ │ │ ├── SoundMixer.cpp │ │ │ ├── SoundMixer386.asm │ │ │ ├── SoundObject.cpp │ │ │ ├── SoundObject.h │ │ │ ├── SoundProfile.cpp │ │ │ ├── SoundProfile.h │ │ │ ├── Wave.cpp │ │ │ ├── Wave.h │ │ │ ├── al_functions.h │ │ │ ├── eax.h │ │ │ └── ov_functions.h │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ ├── Templates │ │ │ ├── AllocationArray.cpp │ │ │ ├── AllocationArray.h │ │ │ ├── BSP.cpp │ │ │ ├── BSP.h │ │ │ ├── BSP_internal.h │ │ │ ├── DynamicArray.cpp │ │ │ ├── DynamicArray.h │ │ │ ├── DynamicContainer.cpp │ │ │ ├── DynamicContainer.h │ │ │ ├── DynamicStackArray.cpp │ │ │ ├── DynamicStackArray.h │ │ │ ├── HashTableTemplate.cpp │ │ │ ├── HashTableTemplate.h │ │ │ ├── LinearAllocator.cpp │ │ │ ├── LinearAllocator.h │ │ │ ├── NameTable.cpp │ │ │ ├── NameTable.h │ │ │ ├── NameTable_CTFileName.cpp │ │ │ ├── NameTable_CTFileName.h │ │ │ ├── NameTable_CTranslationPair.cpp │ │ │ ├── NameTable_CTranslationPair.h │ │ │ ├── Selection.cpp │ │ │ ├── Selection.h │ │ │ ├── StaticArray.cpp │ │ │ ├── StaticArray.h │ │ │ ├── StaticStackArray.cpp │ │ │ ├── StaticStackArray.h │ │ │ ├── Stock.cpp │ │ │ ├── Stock.h │ │ │ ├── Stock_CAnimData.cpp │ │ │ ├── Stock_CAnimData.h │ │ │ ├── Stock_CAnimSet.cpp │ │ │ ├── Stock_CAnimSet.h │ │ │ ├── Stock_CEntityClass.cpp │ │ │ ├── Stock_CEntityClass.h │ │ │ ├── Stock_CMesh.cpp │ │ │ ├── Stock_CMesh.h │ │ │ ├── Stock_CModelData.cpp │ │ │ ├── Stock_CModelData.h │ │ │ ├── Stock_CShader.cpp │ │ │ ├── Stock_CShader.h │ │ │ ├── Stock_CSkeleton.cpp │ │ │ ├── Stock_CSkeleton.h │ │ │ ├── Stock_CSoundData.cpp │ │ │ ├── Stock_CSoundData.h │ │ │ ├── Stock_CTextureData.cpp │ │ │ └── Stock_CTextureData.h │ │ ├── Terrain │ │ │ ├── ArrayHolder.cpp │ │ │ ├── ArrayHolder.h │ │ │ ├── Terrain.cpp │ │ │ ├── Terrain.h │ │ │ ├── TerrainArchive.cpp │ │ │ ├── TerrainArchive.h │ │ │ ├── TerrainEditing.cpp │ │ │ ├── TerrainEditing.h │ │ │ ├── TerrainLayer.cpp │ │ │ ├── TerrainLayer.h │ │ │ ├── TerrainMisc.cpp │ │ │ ├── TerrainMisc.h │ │ │ ├── TerrainRayCasting.cpp │ │ │ ├── TerrainRayCasting.h │ │ │ ├── TerrainRender.cpp │ │ │ ├── TerrainRender.h │ │ │ ├── TerrainTile.cpp │ │ │ └── TerrainTile.h │ │ ├── Types.h │ │ ├── World │ │ │ ├── PhysicsProfile.cpp │ │ │ ├── PhysicsProfile.h │ │ │ ├── World.cpp │ │ │ ├── World.h │ │ │ ├── WorldCSG.cpp │ │ │ ├── WorldCollision.cpp │ │ │ ├── WorldCollision.h │ │ │ ├── WorldCollisionGrid.cpp │ │ │ ├── WorldEditingProfile.cpp │ │ │ ├── WorldEditingProfile.h │ │ │ ├── WorldIO.cpp │ │ │ ├── WorldRayCasting.cpp │ │ │ ├── WorldRayCasting.h │ │ │ └── WorldSettings.h │ │ ├── temp.h │ │ └── zlib │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── EngineGui │ │ ├── DlgChooseTextureType.cpp │ │ ├── DlgChooseTextureType.h │ │ ├── DlgCreateAnimatedTexture.cpp │ │ ├── DlgCreateAnimatedTexture.h │ │ ├── DlgCreateEffectTexture.cpp │ │ ├── DlgCreateEffectTexture.h │ │ ├── DlgCreateNormalTexture.cpp │ │ ├── DlgCreateNormalTexture.h │ │ ├── DlgSelectMode.cpp │ │ ├── DlgSelectMode.h │ │ ├── EngineGUI.cpp │ │ ├── EngineGUI.h │ │ ├── EngineGUI.vcxproj │ │ ├── EngineGUI.vcxproj.filters │ │ ├── EngineGUI.vcxproj.user │ │ ├── FileRequester.cpp │ │ ├── Graphics.clw │ │ ├── Graphics.rc │ │ ├── ReadMe.txt │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ ├── WndDisplayTexture.cpp │ │ ├── WndDisplayTexture.h │ │ ├── mode_bro.bmp │ │ └── resource.h │ ├── Entities │ │ ├── Acid.es │ │ ├── AirWave.es │ │ ├── AmmoItem.es │ │ ├── AmmoPack.es │ │ ├── AnimationChanger.es │ │ ├── AnimationHub.es │ │ ├── ArmorItem.es │ │ ├── BackgroundViewer.es │ │ ├── BasicEffects.es │ │ ├── Beast.es │ │ ├── BigHead.es │ │ ├── BlendController.es │ │ ├── BloodSpray.es │ │ ├── Boneman.es │ │ ├── Bouncer.es │ │ ├── Bullet.es │ │ ├── Camera.es │ │ ├── CameraMarker.es │ │ ├── CannonBall.es │ │ ├── Catman.es │ │ ├── Common │ │ │ ├── Common.cpp │ │ │ ├── Common.h │ │ │ ├── Debris.cpp │ │ │ ├── Flags.h │ │ │ ├── GameInterface.h │ │ │ ├── HUD.cpp │ │ │ ├── HUD.h │ │ │ ├── LightFixes.h │ │ │ ├── Particles.cpp │ │ │ ├── Particles.h │ │ │ ├── PathFinding.cpp │ │ │ ├── PathFinding.h │ │ │ ├── Stats.cpp │ │ │ └── WeaponPositions.h │ │ ├── Copier.es │ │ ├── Counter.es │ │ ├── CrateRider.es │ │ ├── Cyborg.es │ │ ├── CyborgBike.es │ │ ├── Damager.es │ │ ├── Debris.es │ │ ├── DestroyableArchitecture.es │ │ ├── Devil.es │ │ ├── DevilMarker.es │ │ ├── DevilProjectile.es │ │ ├── DoorController.es │ │ ├── Dragonman.es │ │ ├── EffectMarker.es │ │ ├── Effector.es │ │ ├── Elemental.es │ │ ├── EnemyBase.es │ │ ├── EnemyCounter.es │ │ ├── EnemyDive.es │ │ ├── EnemyFly.es │ │ ├── EnemyMarker.es │ │ ├── EnemyRunInto.es │ │ ├── EnemySpawner.es │ │ ├── Entities.vcxproj │ │ ├── Entities.vcxproj.filters │ │ ├── Entities.vcxproj.user │ │ ├── EnvironmentBase.es │ │ ├── EnvironmentMarker.es │ │ ├── Eruptor.es │ │ ├── Eyeman.es │ │ ├── Fish.es │ │ ├── Fishman.es │ │ ├── Flame.es │ │ ├── FogMarker.es │ │ ├── GhostBusterRay.es │ │ ├── Gizmo.es │ │ ├── Global.es │ │ ├── GradientMarker.es │ │ ├── GravityMarker.es │ │ ├── GravityRouter.es │ │ ├── HazeMarker.es │ │ ├── Headman.es │ │ ├── HealthItem.es │ │ ├── Huanman.es │ │ ├── Item.es │ │ ├── KeyItem.es │ │ ├── LastFileID.txt │ │ ├── Light.es │ │ ├── LightStyle.es │ │ ├── Lightning.es │ │ ├── Mamut.es │ │ ├── Mamutman.es │ │ ├── Mantaman.es │ │ ├── Marker.es │ │ ├── MessageHolder.es │ │ ├── MessageItem.es │ │ ├── MirrorMarker.es │ │ ├── ModelDestruction.es │ │ ├── ModelHolder.es │ │ ├── ModelHolder2.es │ │ ├── MovingBrush.es │ │ ├── MovingBrushMarker.es │ │ ├── MusicChanger.es │ │ ├── MusicHolder.es │ │ ├── NavigationMarker.es │ │ ├── ParticlesHolder.es │ │ ├── Pendulum.es │ │ ├── Pipebomb.es │ │ ├── Player.es │ │ ├── PlayerActionMarker.es │ │ ├── PlayerAnimator.es │ │ ├── PlayerMarker.es │ │ ├── PlayerView.es │ │ ├── PlayerWeapons.es │ │ ├── PlayerWeaponsEffects.es │ │ ├── PlayerWeaponsHD.es │ │ ├── PlayerWeapons_old.es │ │ ├── Projectile.es │ │ ├── PyramidSpaceShip.es │ │ ├── PyramidSpaceShipMarker.es │ │ ├── Reminder.es │ │ ├── RobotDriving.es │ │ ├── RobotFixed.es │ │ ├── RobotFlying.es │ │ ├── RollingStone.es │ │ ├── Scorpman.es │ │ ├── Ship.es │ │ ├── ShipMarker.es │ │ ├── SoundHolder.es │ │ ├── StdH │ │ │ ├── StdH.cpp │ │ │ └── StdH.h │ │ ├── StormController.es │ │ ├── Switch.es │ │ ├── Teleport.es │ │ ├── TouchField.es │ │ ├── Trigger.es │ │ ├── Twister.es │ │ ├── VoiceHolder.es │ │ ├── Walker.es │ │ ├── WatchPlayers.es │ │ ├── Watcher.es │ │ ├── Water.es │ │ ├── WeaponItem.es │ │ ├── Werebull.es │ │ ├── Woman.es │ │ ├── WorldBase.es │ │ ├── WorldLink.es │ │ └── WorldSettingsController.es │ ├── EntitiesMP │ │ ├── AirElemental.es │ │ ├── AirShockwave.es │ │ ├── AmmoItem.es │ │ ├── AmmoPack.es │ │ ├── AnimationChanger.es │ │ ├── AnimationHub.es │ │ ├── AreaMarker.es │ │ ├── ArmorItem.es │ │ ├── BackgroundViewer.es │ │ ├── BasicEffects.es │ │ ├── Beast.es │ │ ├── BigHead.es │ │ ├── BlendController.es │ │ ├── BloodSpray.es │ │ ├── Boneman.es │ │ ├── Bouncer.es │ │ ├── Bullet.es │ │ ├── Camera.es │ │ ├── CameraMarker.es │ │ ├── CannonBall.es │ │ ├── CannonRotating.es │ │ ├── CannonStatic.es │ │ ├── ChainsawFreak.es │ │ ├── Common │ │ │ ├── Common.cpp │ │ │ ├── Common.h │ │ │ ├── EmanatingParticles.cpp │ │ │ ├── EmanatingParticles.h │ │ │ ├── Flags.h │ │ │ ├── GameInterface.h │ │ │ ├── HUD.cpp │ │ │ ├── Particles.cpp │ │ │ ├── Particles.h │ │ │ ├── PathFinding.cpp │ │ │ ├── PathFinding.h │ │ │ ├── Stats.cpp │ │ │ └── WeaponPositions.h │ │ ├── Copier.es │ │ ├── Counter.es │ │ ├── CrateBus.es │ │ ├── CrateRider.es │ │ ├── CreditsHolder.es │ │ ├── Damager.es │ │ ├── Debris.es │ │ ├── DebugEntityStatesDisplay.es │ │ ├── Demon.es │ │ ├── DestroyableArchitecture.es │ │ ├── Devil.es │ │ ├── DevilMarker.es │ │ ├── DevilProjectile.es │ │ ├── DoorController.es │ │ ├── Dragonman.es │ │ ├── EffectMarker.es │ │ ├── Effector.es │ │ ├── Elemental.es │ │ ├── EnemyBase.es │ │ ├── EnemyCounter.es │ │ ├── EnemyDive.es │ │ ├── EnemyFly.es │ │ ├── EnemyMarker.es │ │ ├── EnemyRunInto.es │ │ ├── EnemySpawner.es │ │ ├── EntitiesMP.vcxproj │ │ ├── EntitiesMP.vcxproj.filters │ │ ├── EntitiesMP.vcxproj.user │ │ ├── EnvironmentBase.es │ │ ├── EnvironmentMarker.es │ │ ├── EnvironmentParticlesHolder.es │ │ ├── Eruptor.es │ │ ├── ExotechLarva.es │ │ ├── ExotechLarvaBattery.es │ │ ├── ExotechLarvaCharger.es │ │ ├── Eyeman.es │ │ ├── Fireworks.es │ │ ├── Fish.es │ │ ├── Flame.es │ │ ├── FogMarker.es │ │ ├── Gizmo.es │ │ ├── Global.es │ │ ├── GradientMarker.es │ │ ├── GravityMarker.es │ │ ├── GravityRouter.es │ │ ├── Grunt.es │ │ ├── GruntSka.es │ │ ├── Guffy.es │ │ ├── HazeMarker.es │ │ ├── Headman.es │ │ ├── HealthItem.es │ │ ├── HudPicHolder.es │ │ ├── Item.es │ │ ├── KeyItem.es │ │ ├── LarvaOffspring.es │ │ ├── LastFileID.txt │ │ ├── Light.es │ │ ├── Lightning.es │ │ ├── Marker.es │ │ ├── MessageHolder.es │ │ ├── MessageItem.es │ │ ├── MeteorShower.es │ │ ├── MirrorMarker.es │ │ ├── ModelDestruction.es │ │ ├── ModelHolder.es │ │ ├── ModelHolder2.es │ │ ├── ModelHolder3.es │ │ ├── MovingBrush.es │ │ ├── MovingBrushMarker.es │ │ ├── MusicChanger.es │ │ ├── MusicHolder.es │ │ ├── NavigationMarker.es │ │ ├── ParticlesHolder.es │ │ ├── Pendulum.es │ │ ├── PhotoAlbum.es │ │ ├── Pipebomb.es │ │ ├── Player.es │ │ ├── PlayerActionMarker.es │ │ ├── PlayerAnimator.es │ │ ├── PlayerMarker.es │ │ ├── PlayerView.es │ │ ├── PlayerWeapons.es │ │ ├── PlayerWeaponsEffects.es │ │ ├── PlayerWeaponsHD.es │ │ ├── PlayerWeapons_old.es │ │ ├── PowerUpItem.es │ │ ├── Projectile.es │ │ ├── PyramidSpaceShip.es │ │ ├── PyramidSpaceShipMarker.es │ │ ├── Reminder.es │ │ ├── RollingStone.es │ │ ├── Santa.es │ │ ├── Scorpman.es │ │ ├── ScrollHolder.es │ │ ├── SeriousBomb.es │ │ ├── Ship.es │ │ ├── ShipMarker.es │ │ ├── Shooter.es │ │ ├── SoundHolder.es │ │ ├── SpawnerProjectile.es │ │ ├── Spinner.es │ │ ├── StdH │ │ │ ├── StdH.cpp │ │ │ └── StdH.h │ │ ├── StormController.es │ │ ├── Summoner.es │ │ ├── SummonerMarker.es │ │ ├── Switch.es │ │ ├── TacticsChanger.es │ │ ├── TacticsHolder.es │ │ ├── Teleport.es │ │ ├── Terrain.es │ │ ├── TextFXHolder.es │ │ ├── TimeController.es │ │ ├── TouchField.es │ │ ├── Trigger.es │ │ ├── Twister.es │ │ ├── VoiceHolder.es │ │ ├── Walker.es │ │ ├── WatchPlayers.es │ │ ├── Watcher.es │ │ ├── Water.es │ │ ├── WeaponItem.es │ │ ├── Werebull.es │ │ ├── Woman.es │ │ ├── WorldBase.es │ │ ├── WorldLink.es │ │ └── WorldSettingsController.es │ ├── External │ │ ├── SDL2 │ │ │ ├── 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_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_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.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_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_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── libogg │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── ogg │ │ │ │ │ ├── config_types.h.in │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ ├── libogg_dynamic.vcxproj │ │ │ ├── libogg_dynamic.vcxproj.user │ │ │ ├── ogg.def │ │ │ └── src │ │ │ │ ├── bitwise.c │ │ │ │ └── framing.c │ │ └── libvorbis │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── include │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ │ ├── 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_dynamic.vcxproj │ │ │ ├── libvorbisfile_dynamic.vcxproj │ │ │ ├── vorbis.def │ │ │ ├── vorbisenc.def │ │ │ └── vorbisfile.def │ ├── GameGUIMP │ │ ├── ActionsListControl.cpp │ │ ├── ActionsListControl.h │ │ ├── AxisListCtrl.cpp │ │ ├── AxisListCtrl.h │ │ ├── ConsoleSymbolsCombo.cpp │ │ ├── ConsoleSymbolsCombo.h │ │ ├── DlgAudioQuality.cpp │ │ ├── DlgAudioQuality.h │ │ ├── DlgConsole.cpp │ │ ├── DlgConsole.h │ │ ├── DlgEditButtonAction.cpp │ │ ├── DlgEditButtonAction.h │ │ ├── DlgPlayerAppearance.cpp │ │ ├── DlgPlayerAppearance.h │ │ ├── DlgPlayerControls.cpp │ │ ├── DlgPlayerControls.h │ │ ├── DlgPlayerSettings.cpp │ │ ├── DlgPlayerSettings.h │ │ ├── DlgRenameControls.cpp │ │ ├── DlgRenameControls.h │ │ ├── DlgSelectPlayer.cpp │ │ ├── DlgSelectPlayer.h │ │ ├── DlgVideoQuality.cpp │ │ ├── DlgVideoQuality.h │ │ ├── EditConsole.cpp │ │ ├── EditConsole.h │ │ ├── GameGUI.clw │ │ ├── GameGUI.cpp │ │ ├── GameGUI.h │ │ ├── GameGUI.rc │ │ ├── GameGUI.vcxproj │ │ ├── GameGUI.vcxproj.filters │ │ ├── GameGUI.vcxproj.user │ │ ├── LocalPlayersList.cpp │ │ ├── LocalPlayersList.h │ │ ├── PressKeyEditControl.cpp │ │ ├── PressKeyEditControl.h │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── bmp00001.bmp │ │ ├── cursor_u.bmp │ │ ├── res │ │ │ └── Game.rc2 │ │ └── resource.h │ ├── GameMP │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── CompMessage.cpp │ │ ├── CompMessage.h │ │ ├── CompModels.cpp │ │ ├── Computer.cpp │ │ ├── Computer.h │ │ ├── Console.cpp │ │ ├── Controls.cpp │ │ ├── Data.h │ │ ├── Game.cpp │ │ ├── Game.h │ │ ├── Game.user │ │ ├── Game.vcxproj │ │ ├── Game.vcxproj.user │ │ ├── LCDDrawing.cpp │ │ ├── LCDDrawing.h │ │ ├── LoadingHook.cpp │ │ ├── Map.cpp │ │ ├── PlayerSettings.h │ │ ├── Render.h │ │ ├── SEColors.h │ │ ├── SessionProperties.cpp │ │ ├── SessionProperties.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ └── WEDInterface.cpp │ ├── LWSkaExporter │ │ ├── AnimExport.cpp │ │ ├── Base.h │ │ ├── CopyWeightMaps.cpp │ │ ├── LWSkaExporter.vcxproj │ │ ├── LWSkaExporter.vcxproj.filters │ │ ├── LWSkaExporter.vcxproj.user │ │ ├── Master.cpp │ │ ├── MeshExport.cpp │ │ ├── ModelerMeshExporter.cpp │ │ ├── SDK │ │ │ ├── lwanimlod.h │ │ │ ├── lwanimsav.h │ │ │ ├── lwchannel.h │ │ │ ├── lwcmdseq.h │ │ │ ├── lwcustobj.h │ │ │ ├── lwdialog.h │ │ │ ├── lwdisplay.h │ │ │ ├── lwdisplce.h │ │ │ ├── lwdyna.h │ │ │ ├── lwenvel.h │ │ │ ├── lwenviron.h │ │ │ ├── lwfilter.h │ │ │ ├── lwframbuf.h │ │ │ ├── lwgeneric.h │ │ │ ├── lwglobsrv.h │ │ │ ├── lwhandler.h │ │ │ ├── lwhost.h │ │ │ ├── lwimage.h │ │ │ ├── lwimageio.h │ │ │ ├── lwio.h │ │ │ ├── lwlaytool.h │ │ │ ├── lwmaster.h │ │ │ ├── lwmath.h │ │ │ ├── lwmeshedt.h │ │ │ ├── lwmeshes.h │ │ │ ├── lwmodeler.h │ │ │ ├── lwmodtool.h │ │ │ ├── lwmodule.h │ │ │ ├── lwmonitor.h │ │ │ ├── lwmotion.h │ │ │ ├── lwmtutil.h │ │ │ ├── lwobjimp.h │ │ │ ├── lwobjrep.h │ │ │ ├── lwpanel.h │ │ │ ├── lwpreview.h │ │ │ ├── lwprtcl.h │ │ │ ├── lwrender.h │ │ │ ├── lwscenecv.h │ │ │ ├── lwserver.h │ │ │ ├── lwshader.h │ │ │ ├── lwshelf.h │ │ │ ├── lwsurf.h │ │ │ ├── lwsurfed.h │ │ │ ├── lwtexture.h │ │ │ ├── lwtool.h │ │ │ ├── lwtxtr.h │ │ │ ├── lwtxtred.h │ │ │ ├── lwtypes.h │ │ │ ├── lwvolume.h │ │ │ ├── lwvparm.h │ │ │ └── lwxpanel.h │ │ ├── SectionsExport.cpp │ │ ├── SurfaceParameters.cpp │ │ ├── plugin.cpp │ │ ├── serv.def │ │ ├── servmain.c │ │ ├── shutdown.c │ │ ├── startup.c │ │ ├── username.c │ │ ├── vecmat.c │ │ └── vecmat.h │ ├── MakeFONT │ │ ├── MakeFONT.cpp │ │ ├── MakeFONT.vcxproj │ │ ├── MakeFONT.vcxproj.filters │ │ └── MakeFONT.vcxproj.user │ ├── Modeler │ │ ├── AnimComboBox.cpp │ │ ├── AnimComboBox.h │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── ChoosedColorButton.cpp │ │ ├── ChoosedColorButton.h │ │ ├── ColoredButton.cpp │ │ ├── ColoredButton.h │ │ ├── CtrlEditBoolean.cpp │ │ ├── CtrlEditBoolean.h │ │ ├── DlgAutoMipModeling.cpp │ │ ├── DlgAutoMipModeling.h │ │ ├── DlgChooseAnim.cpp │ │ ├── DlgChooseAnim.h │ │ ├── DlgCreateReflectionTexture.cpp │ │ ├── DlgCreateReflectionTexture.h │ │ ├── DlgCreateSpecularTexture.cpp │ │ ├── DlgCreateSpecularTexture.h │ │ ├── DlgExportForSkinning.cpp │ │ ├── DlgExportForSkinning.h │ │ ├── DlgInfoFrame.cpp │ │ ├── DlgInfoFrame.h │ │ ├── DlgInfoPgAnim.cpp │ │ ├── DlgInfoPgAnim.h │ │ ├── DlgInfoPgGlobal.cpp │ │ ├── DlgInfoPgMip.cpp │ │ ├── DlgInfoPgMip.h │ │ ├── DlgInfoPgNone.cpp │ │ ├── DlgInfoPgNone.h │ │ ├── DlgInfoPgPos.cpp │ │ ├── DlgInfoPgPos.h │ │ ├── DlgInfoPgRendering.cpp │ │ ├── DlgInfoPgRendering.h │ │ ├── DlgInfoSheet.cpp │ │ ├── DlgInfoSheet.h │ │ ├── DlgMarkLinkedSurfaces.cpp │ │ ├── DlgMarkLinkedSurfaces.h │ │ ├── DlgMultiplyMapping.cpp │ │ ├── DlgMultiplyMapping.h │ │ ├── DlgNewProgress.cpp │ │ ├── DlgNewProgress.h │ │ ├── DlgNumericAlpha.cpp │ │ ├── DlgNumericAlpha.h │ │ ├── DlgPgCollision.cpp │ │ ├── DlgPgCollision.h │ │ ├── DlgPgInfoAttachingPlacement.cpp │ │ ├── DlgPgInfoAttachingPlacement.h │ │ ├── DlgPgInfoAttachingSound.cpp │ │ ├── DlgPgInfoAttachingSound.h │ │ ├── DlgPleaseWait.cpp │ │ ├── DlgPleaseWait.h │ │ ├── DlgPreferences.cpp │ │ ├── DlgPreferences.h │ │ ├── LinkedSurfaceList.cpp │ │ ├── LinkedSurfaceList.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── MakeHelp.bat │ │ ├── Modeler.aps │ │ ├── Modeler.clw │ │ ├── Modeler.cpp │ │ ├── Modeler.h │ │ ├── Modeler.rc │ │ ├── Modeler.vcxproj │ │ ├── Modeler.vcxproj.filters │ │ ├── Modeler.vcxproj.user │ │ ├── ModelerDoc.cpp │ │ ├── ModelerDoc.h │ │ ├── ModelerView.cpp │ │ ├── ModelerView.h │ │ ├── PaletteButton.cpp │ │ ├── PaletteButton.h │ │ ├── PaletteDialog.cpp │ │ ├── PaletteDialog.h │ │ ├── PatchPalette.cpp │ │ ├── PatchPalette.h │ │ ├── PatchPaletteButton.cpp │ │ ├── PatchPaletteButton.h │ │ ├── ReadMe.txt │ │ ├── ScriptDoc.cpp │ │ ├── ScriptDoc.h │ │ ├── ScriptView.cpp │ │ ├── ScriptView.h │ │ ├── SkyFloat.cpp │ │ ├── SkyFloat.h │ │ ├── StainsComboBox.cpp │ │ ├── StainsComboBox.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TextureComboBox.cpp │ │ ├── TextureComboBox.h │ │ ├── dlginfopgglobal.h │ │ ├── hlp │ │ │ ├── AfxCore.rtf │ │ │ ├── AppExit.bmp │ │ │ ├── Bullet.bmp │ │ │ ├── CurArw2.bmp │ │ │ ├── CurArw4.bmp │ │ │ ├── CurHelp.bmp │ │ │ ├── EditCopy.bmp │ │ │ ├── EditCut.bmp │ │ │ ├── EditPast.bmp │ │ │ ├── EditUndo.bmp │ │ │ ├── FileNew.bmp │ │ │ ├── FileOpen.bmp │ │ │ ├── FilePrnt.bmp │ │ │ ├── FileSave.bmp │ │ │ ├── HlpSBar.bmp │ │ │ ├── HlpTBar.bmp │ │ │ ├── Modeler.cnt │ │ │ ├── Modeler.hm │ │ │ ├── Modeler.hpj │ │ │ ├── Modeler.ph │ │ │ ├── RecFirst.bmp │ │ │ ├── RecLast.bmp │ │ │ ├── RecNext.bmp │ │ │ ├── RecPrev.bmp │ │ │ ├── ScMenu.bmp │ │ │ ├── Scmax.bmp │ │ │ └── Scmin.bmp │ │ ├── res │ │ │ ├── Modeler.ico │ │ │ ├── Modeler.rc2 │ │ │ ├── ModelerDoc.ico │ │ │ ├── Toolbar.bmp │ │ │ ├── animcont.bmp │ │ │ ├── bmp00001.bmp │ │ │ ├── bmp00002.bmp │ │ │ ├── bmp00003.bmp │ │ │ ├── bmp00004.bmp │ │ │ ├── icon1.ico │ │ │ ├── idr_scri.ico │ │ │ ├── mipandli.bmp │ │ │ ├── nullcurs.cur │ │ │ ├── pick.ico │ │ │ ├── renderco.bmp │ │ │ ├── stain_ac.ico │ │ │ ├── stain_in.ico │ │ │ ├── stainsco.bmp │ │ │ ├── texturec.bmp │ │ │ └── toolbar1.bmp │ │ └── resource.h │ ├── Models │ │ ├── Ages │ │ │ ├── Egypt │ │ │ │ ├── Architecture │ │ │ │ │ ├── Column07 │ │ │ │ │ │ ├── Column.h │ │ │ │ │ │ └── Column.ini │ │ │ │ │ ├── Column08 │ │ │ │ │ │ ├── Column.h │ │ │ │ │ │ └── Column.ini │ │ │ │ │ ├── Columns02 │ │ │ │ │ │ ├── Columns.h │ │ │ │ │ │ └── Columns.ini │ │ │ │ │ ├── Fence01 │ │ │ │ │ │ ├── Fence.h │ │ │ │ │ │ └── Fence.ini │ │ │ │ │ ├── SmoothGate01 │ │ │ │ │ │ ├── SmoothGate.h │ │ │ │ │ │ └── SmoothGate.ini │ │ │ │ │ └── Switch01 │ │ │ │ │ │ ├── Handle.h │ │ │ │ │ │ ├── Handle.ini │ │ │ │ │ │ ├── Switch.h │ │ │ │ │ │ └── Switch.ini │ │ │ │ ├── Gods │ │ │ │ │ ├── Amon │ │ │ │ │ │ ├── Amon.h │ │ │ │ │ │ ├── Amon.ini │ │ │ │ │ │ ├── AmonGold.h │ │ │ │ │ │ ├── AmonGold.ini │ │ │ │ │ │ ├── AmonReflections.h │ │ │ │ │ │ └── AmonReflections.ini │ │ │ │ │ ├── Amonorg │ │ │ │ │ │ ├── Amon.h │ │ │ │ │ │ ├── Amon.ini │ │ │ │ │ │ ├── AmonGold.h │ │ │ │ │ │ ├── AmonGold.ini │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ └── Destroyed.ini │ │ │ │ │ ├── Nefthis │ │ │ │ │ │ ├── Nefthis.h │ │ │ │ │ │ └── Nefthis.ini │ │ │ │ │ ├── Neith │ │ │ │ │ │ ├── Neith.h │ │ │ │ │ │ └── Neith.ini │ │ │ │ │ ├── Osiris │ │ │ │ │ │ ├── Osiris.h │ │ │ │ │ │ └── Osiris.ini │ │ │ │ │ ├── Ptah │ │ │ │ │ │ ├── Ptah.h │ │ │ │ │ │ └── Ptah.ini │ │ │ │ │ ├── Sekhmet │ │ │ │ │ │ ├── Sekhmet.h │ │ │ │ │ │ └── Sekhmet.ini │ │ │ │ │ ├── Toth │ │ │ │ │ │ ├── Toth.h │ │ │ │ │ │ └── Toth.ini │ │ │ │ │ └── TothMonkey │ │ │ │ │ │ ├── TothMonkey.h │ │ │ │ │ │ └── TothMonkey.ini │ │ │ │ ├── Objects │ │ │ │ │ └── Horns03 │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ ├── Destroyed.ini │ │ │ │ │ │ ├── Horns.h │ │ │ │ │ │ └── Horns.ini │ │ │ │ ├── Statues │ │ │ │ │ ├── BirdStatue │ │ │ │ │ │ ├── BirdStatue.h │ │ │ │ │ │ └── BirdStatue.ini │ │ │ │ │ ├── Cat │ │ │ │ │ │ ├── Cat.h │ │ │ │ │ │ └── Cat.ini │ │ │ │ │ ├── Jackal │ │ │ │ │ │ ├── Jackal.h │ │ │ │ │ │ └── Jackal.ini │ │ │ │ │ ├── Jackal01 │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ ├── Destroyed.ini │ │ │ │ │ │ ├── Jackal.h │ │ │ │ │ │ └── Jackal.ini │ │ │ │ │ ├── Jaguar02 │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ ├── Destroyed.ini │ │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Neferthiti │ │ │ │ │ │ ├── Nefer.h │ │ │ │ │ │ └── Nefer.ini │ │ │ │ │ ├── Sphinx03 │ │ │ │ │ │ ├── Sphinx.h │ │ │ │ │ │ └── Sphinx.ini │ │ │ │ │ └── Sphinx04 │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ ├── Destroyed.ini │ │ │ │ │ │ ├── Sphinx.h │ │ │ │ │ │ └── Sphinx.ini │ │ │ │ └── Traps │ │ │ │ │ ├── RollingStone │ │ │ │ │ ├── RollingStone.h │ │ │ │ │ ├── RollingStone.ini │ │ │ │ │ ├── Stone.h │ │ │ │ │ └── Stone.ini │ │ │ │ │ ├── RollingStone_old │ │ │ │ │ ├── RollingStone.h │ │ │ │ │ └── RollingStone.ini │ │ │ │ │ ├── SphinxSplited │ │ │ │ │ ├── Sphinx.h │ │ │ │ │ ├── Sphinx.ini │ │ │ │ │ ├── SphinxGlass.h │ │ │ │ │ └── SphinxGlass.ini │ │ │ │ │ └── Spikes01 │ │ │ │ │ ├── Spikes.h │ │ │ │ │ └── Spikes.ini │ │ │ └── Future │ │ │ │ ├── LightSources │ │ │ │ ├── LightSource05 │ │ │ │ │ ├── LightSource.h │ │ │ │ │ └── LightSource.ini │ │ │ │ ├── LightSource07 │ │ │ │ │ ├── LightSource.h │ │ │ │ │ └── LightSource.ini │ │ │ │ ├── LightSource08 │ │ │ │ │ ├── LightSource.h │ │ │ │ │ └── LightSource.ini │ │ │ │ └── LightSource09 │ │ │ │ │ ├── LightSource.h │ │ │ │ │ └── LightSource.ini │ │ │ │ └── Space │ │ │ │ └── Galaxy01 │ │ │ │ ├── Galaxy.h │ │ │ │ └── Galaxy.ini │ │ ├── Computer │ │ │ ├── Floor.h │ │ │ └── Floor.ini │ │ ├── CutSequences │ │ │ ├── Altar │ │ │ │ ├── Altar.h │ │ │ │ └── Altar.ini │ │ │ ├── AltarKarnakApproach │ │ │ │ ├── Altar.h │ │ │ │ └── Altar.ini │ │ │ ├── AltarPicker │ │ │ │ ├── AltarPicker.h │ │ │ │ └── AltarPicker.ini │ │ │ ├── Bridge │ │ │ │ ├── Bridge.h │ │ │ │ ├── Bridge.ini │ │ │ │ ├── BridgeSupport.h │ │ │ │ └── BridgeSupport.ini │ │ │ ├── Counter │ │ │ │ ├── Digit.h │ │ │ │ └── Digit.ini │ │ │ ├── Crate │ │ │ │ ├── Crate.h │ │ │ │ ├── Crate.ini │ │ │ │ ├── CrateLowPoly.h │ │ │ │ └── CrateLowPoly.ini │ │ │ ├── CrateRider │ │ │ │ ├── Crate.h │ │ │ │ └── Crate.ini │ │ │ ├── CroteamLogo │ │ │ │ ├── CroteamLogo.h │ │ │ │ └── CroteamLogo.ini │ │ │ ├── Earth │ │ │ │ ├── Earth.h │ │ │ │ └── Earth.ini │ │ │ ├── EndTitle │ │ │ │ ├── ToBeContinued.h │ │ │ │ └── ToBeContinued.ini │ │ │ ├── Lamp01 │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── Lamp02 │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── Lamp03 │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── Lamp04 │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── Lamp05 │ │ │ │ ├── Glow.h │ │ │ │ ├── Glow.ini │ │ │ │ ├── Light.h │ │ │ │ └── Light.ini │ │ │ ├── Lamp06 │ │ │ │ ├── Glow.h │ │ │ │ ├── Glow.ini │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── LogoOdi │ │ │ │ ├── LogoOdi.h │ │ │ │ └── LogoOdi.ini │ │ │ ├── Luxor │ │ │ │ ├── Antenna.h │ │ │ │ └── Antenna.ini │ │ │ ├── Obelisk │ │ │ │ ├── MainPart.h │ │ │ │ ├── MainPart.ini │ │ │ │ ├── Part01.h │ │ │ │ ├── Part01.ini │ │ │ │ ├── Part02.h │ │ │ │ ├── Part02.ini │ │ │ │ ├── Part03.h │ │ │ │ ├── Part03.ini │ │ │ │ ├── Part04.h │ │ │ │ ├── Part04.ini │ │ │ │ ├── Part05.h │ │ │ │ ├── Part05.ini │ │ │ │ ├── Part06.h │ │ │ │ ├── Part06.ini │ │ │ │ ├── Part07.h │ │ │ │ ├── Part07.ini │ │ │ │ ├── Part08.h │ │ │ │ ├── Part08.ini │ │ │ │ ├── Part09.h │ │ │ │ └── Part09.ini │ │ │ ├── Portal │ │ │ │ ├── Base.h │ │ │ │ ├── Base.ini │ │ │ │ ├── LightningHolder.h │ │ │ │ ├── LightningHolder.ini │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── Pylon │ │ │ │ ├── MainPart.h │ │ │ │ ├── MainPart.ini │ │ │ │ ├── Part01.h │ │ │ │ ├── Part01.ini │ │ │ │ ├── Part02.h │ │ │ │ ├── Part02.ini │ │ │ │ ├── Part03.h │ │ │ │ ├── Part03.ini │ │ │ │ ├── Part04.h │ │ │ │ ├── Part04.ini │ │ │ │ ├── Part05.h │ │ │ │ ├── Part05.ini │ │ │ │ ├── Part06.h │ │ │ │ ├── Part06.ini │ │ │ │ ├── Part07.h │ │ │ │ ├── Part07.ini │ │ │ │ ├── Part08.h │ │ │ │ ├── Part08.ini │ │ │ │ ├── Part09.h │ │ │ │ └── Part09.ini │ │ │ ├── Pyramid │ │ │ │ ├── Lightning.h │ │ │ │ ├── Lightning.ini │ │ │ │ ├── Ring.h │ │ │ │ └── Ring.ini │ │ │ ├── Screens │ │ │ │ ├── Frame.h │ │ │ │ ├── Frame.ini │ │ │ │ ├── Screen.h │ │ │ │ └── Screen.ini │ │ │ ├── SeriousSamLogo │ │ │ │ ├── SeriousSam.h │ │ │ │ └── SeriousSam.ini │ │ │ ├── SeriousSamSign │ │ │ │ ├── SeriousSamSign.h │ │ │ │ └── SeriousSamSign.ini │ │ │ └── SpaceShip │ │ │ │ ├── BeamMachine.h │ │ │ │ ├── BeamMachine.ini │ │ │ │ ├── BeamMachineRim.h │ │ │ │ ├── BeamMachineRim.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── BottomFlare.h │ │ │ │ ├── BottomFlare.ini │ │ │ │ ├── Door.h │ │ │ │ ├── Door.ini │ │ │ │ ├── FillIn.h │ │ │ │ ├── FillIn.ini │ │ │ │ ├── LightBeam.h │ │ │ │ ├── LightBeam.ini │ │ │ │ ├── PowerRing.h │ │ │ │ ├── PowerRing.ini │ │ │ │ ├── SpaceShip.h │ │ │ │ └── SpaceShip.ini │ │ ├── Editor │ │ │ ├── AmbientLight.h │ │ │ ├── AmbientLight.ini │ │ │ ├── AngleVector.h │ │ │ ├── AngleVector.ini │ │ │ ├── AnimationChanger.h │ │ │ ├── AnimationChanger.ini │ │ │ ├── Axis.h │ │ │ ├── Axis.ini │ │ │ ├── BlendController.h │ │ │ ├── BlendController.ini │ │ │ ├── BoundingBox.h │ │ │ ├── BoundingBox.ini │ │ │ ├── Camera.h │ │ │ ├── Camera.ini │ │ │ ├── CameraMarker.h │ │ │ ├── CameraMarker.ini │ │ │ ├── CollisionBox.h │ │ │ ├── CollisionBox.ini │ │ │ ├── Copier.h │ │ │ ├── Copier.ini │ │ │ ├── Damager.h │ │ │ ├── Damager.ini │ │ │ ├── DoorController.h │ │ │ ├── DoorController.ini │ │ │ ├── EmptyBrush.h │ │ │ ├── EmptyBrush.ini │ │ │ ├── EnemyMarker.h │ │ │ ├── EnemyMarker.ini │ │ │ ├── EnemySpawner.h │ │ │ ├── EnemySpawner.ini │ │ │ ├── EntityMarker.h │ │ │ ├── EntityMarker.ini │ │ │ ├── EnvironmentMarker.h │ │ │ ├── EnvironmentMarker.ini │ │ │ ├── Floor.h │ │ │ ├── Floor.ini │ │ │ ├── Fog.h │ │ │ ├── Fog.ini │ │ │ ├── GradientMarker.h │ │ │ ├── GradientMarker.ini │ │ │ ├── GravityMarker.h │ │ │ ├── GravityMarker.ini │ │ │ ├── GravityRouter.h │ │ │ ├── GravityRouter.ini │ │ │ ├── Guilotine.h │ │ │ ├── Guilotine.ini │ │ │ ├── Haze.h │ │ │ ├── Haze.ini │ │ │ ├── Lamp.h │ │ │ ├── Lamp.ini │ │ │ ├── LightSource.h │ │ │ ├── LightSource.ini │ │ │ ├── LightStyle.h │ │ │ ├── LightStyle.ini │ │ │ ├── Lightning.h │ │ │ ├── Lightning.ini │ │ │ ├── MessageHolder.h │ │ │ ├── MessageHolder.ini │ │ │ ├── ModelDestruction.h │ │ │ ├── ModelDestruction.ini │ │ │ ├── MovingBrushMarker.h │ │ │ ├── MovingBrushMarker.ini │ │ │ ├── MusicChanger.h │ │ │ ├── MusicChanger.ini │ │ │ ├── MusicHolder.h │ │ │ ├── MusicHolder.ini │ │ │ ├── NavigationMarker.h │ │ │ ├── NavigationMarker.ini │ │ │ ├── PlayerActionMarker.h │ │ │ ├── PlayerActionMarker.ini │ │ │ ├── PlayerStart.h │ │ │ ├── PlayerStart.ini │ │ │ ├── PointLight.h │ │ │ ├── PointLight.ini │ │ │ ├── PortalMarker.h │ │ │ ├── PortalMarker.ini │ │ │ ├── RangeSphere.h │ │ │ ├── RangeSphere.ini │ │ │ ├── ShipMarker.h │ │ │ ├── ShipMarker.ini │ │ │ ├── SoundHolder.h │ │ │ ├── SoundHolder.ini │ │ │ ├── SoundHolder02.h │ │ │ ├── SoundHolder02.ini │ │ │ ├── SpotLight.h │ │ │ ├── SpotLight.ini │ │ │ ├── StormController.h │ │ │ ├── StormController.ini │ │ │ ├── Teapot.h │ │ │ ├── Teapot.ini │ │ │ ├── Teleport.h │ │ │ ├── Teleport.ini │ │ │ ├── ThunderController.h │ │ │ ├── ThunderController.ini │ │ │ ├── Trigger.h │ │ │ ├── Trigger.ini │ │ │ ├── Vector.h │ │ │ ├── Vector.ini │ │ │ ├── VoiceHolder.h │ │ │ ├── VoiceHolder.ini │ │ │ ├── WarpEntrance.h │ │ │ ├── WarpEntrance.ini │ │ │ ├── WarpExit.h │ │ │ ├── WarpExit.ini │ │ │ ├── WatchPlayers.h │ │ │ ├── WatchPlayers.ini │ │ │ ├── WorldLink.h │ │ │ ├── WorldLink.ini │ │ │ ├── WorldSettingsController.h │ │ │ └── WorldSettingsController.ini │ │ ├── Effects │ │ │ ├── BigFire │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── Blood01 │ │ │ │ └── objects │ │ │ │ │ ├── Blood01.h │ │ │ │ │ └── Blood01.ini │ │ │ ├── BloodCloud │ │ │ │ ├── BloodCloud.h │ │ │ │ └── BloodCloud.ini │ │ │ ├── BloodExplosion01 │ │ │ │ ├── BloodExplosion.h │ │ │ │ └── BloodExplosion.ini │ │ │ ├── BloodOnTheWall01 │ │ │ │ ├── Blood.h │ │ │ │ └── Blood.ini │ │ │ ├── BulletOnTheWall │ │ │ │ ├── Bullet.h │ │ │ │ └── Bullet.ini │ │ │ ├── BulletParticles │ │ │ │ ├── BulletParticles.h │ │ │ │ └── BulletParticles.ini │ │ │ ├── BulletTrail │ │ │ │ ├── BulletTrail.h │ │ │ │ └── BulletTrail.ini │ │ │ ├── BurnedStainOnTheWall │ │ │ │ ├── BurnedStainOnTheWall.h │ │ │ │ └── BurnedStainOnTheWall.ini │ │ │ ├── Debris │ │ │ │ ├── Body01 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Body02 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Body03 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Body04 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Body05 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Brain01 │ │ │ │ │ ├── Brain.h │ │ │ │ │ └── Brain.ini │ │ │ │ ├── Column01 │ │ │ │ │ ├── Column01.h │ │ │ │ │ ├── Column01.ini │ │ │ │ │ ├── ColumnAll.h │ │ │ │ │ ├── ColumnAll.ini │ │ │ │ │ ├── Part01.h │ │ │ │ │ ├── Part01.ini │ │ │ │ │ ├── Part02.h │ │ │ │ │ ├── Part02.ini │ │ │ │ │ ├── Part03.h │ │ │ │ │ ├── Part03.ini │ │ │ │ │ ├── Part04.h │ │ │ │ │ ├── Part04.ini │ │ │ │ │ ├── Part05.h │ │ │ │ │ ├── Part05.ini │ │ │ │ │ ├── Part06.h │ │ │ │ │ ├── Part06.ini │ │ │ │ │ ├── Part07.h │ │ │ │ │ ├── Part07.ini │ │ │ │ │ ├── Part08.h │ │ │ │ │ ├── Part08.ini │ │ │ │ │ ├── Part09.h │ │ │ │ │ ├── Part09.ini │ │ │ │ │ ├── Part10.h │ │ │ │ │ ├── Part10.ini │ │ │ │ │ ├── Part11.h │ │ │ │ │ └── Part11.ini │ │ │ │ ├── Column02 │ │ │ │ │ ├── Column.h │ │ │ │ │ ├── Column.ini │ │ │ │ │ ├── Part01.h │ │ │ │ │ ├── Part01.ini │ │ │ │ │ ├── Part02.h │ │ │ │ │ ├── Part02.ini │ │ │ │ │ ├── Part03.h │ │ │ │ │ ├── Part03.ini │ │ │ │ │ ├── Part04.h │ │ │ │ │ ├── Part04.ini │ │ │ │ │ ├── Part05.h │ │ │ │ │ ├── Part05.ini │ │ │ │ │ ├── Part06.h │ │ │ │ │ ├── Part06.ini │ │ │ │ │ ├── Part07.h │ │ │ │ │ ├── Part07.ini │ │ │ │ │ ├── Part08.h │ │ │ │ │ ├── Part08.ini │ │ │ │ │ ├── Part09.h │ │ │ │ │ ├── Part09.ini │ │ │ │ │ ├── Part10.h │ │ │ │ │ └── Part10.ini │ │ │ │ ├── Flesh │ │ │ │ │ ├── Flesh.h │ │ │ │ │ └── Flesh.ini │ │ │ │ ├── Fruits │ │ │ │ │ ├── Apple.h │ │ │ │ │ ├── Apple.ini │ │ │ │ │ ├── Banana.h │ │ │ │ │ ├── Banana.ini │ │ │ │ │ ├── CheeseBurger.h │ │ │ │ │ ├── CheeseBurger.ini │ │ │ │ │ ├── LollyPop.h │ │ │ │ │ ├── LollyPop.ini │ │ │ │ │ ├── Orange.h │ │ │ │ │ ├── Orange.ini │ │ │ │ │ ├── Pear.h │ │ │ │ │ └── Pear.ini │ │ │ │ ├── Lava01 │ │ │ │ │ ├── Lava.h │ │ │ │ │ ├── Lava.ini │ │ │ │ │ ├── LavaFlare.h │ │ │ │ │ └── LavaFlare.ini │ │ │ │ ├── Skull01 │ │ │ │ │ ├── Skull.h │ │ │ │ │ └── Skull.ini │ │ │ │ ├── Skull01_org │ │ │ │ │ ├── Skull.h │ │ │ │ │ └── Skull.ini │ │ │ │ ├── Stone │ │ │ │ │ ├── Stone.h │ │ │ │ │ └── Stone.ini │ │ │ │ └── Wood01 │ │ │ │ │ ├── Wood.h │ │ │ │ │ └── Wood.ini │ │ │ ├── Explosion01 │ │ │ │ ├── Explosion01.h │ │ │ │ └── Explosion01.ini │ │ │ ├── Explosion02 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion03 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion04 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion05 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion06 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion07 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion08 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion09 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion10 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion11 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion12 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion13 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion14 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion15 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion16 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion17 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion18 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── ExplosionGrenade │ │ │ │ ├── ExplosionGrenade.h │ │ │ │ ├── ExplosionGrenade.ini │ │ │ │ ├── ExplosionGrenade3D.h │ │ │ │ └── ExplosionGrenade3D.ini │ │ │ ├── ExplosionParticles │ │ │ │ ├── Particles.h │ │ │ │ ├── Particles.ini │ │ │ │ ├── Particles3D.h │ │ │ │ └── Particles3D.ini │ │ │ ├── ExplosionRocket │ │ │ │ ├── ExplosionRocket.h │ │ │ │ ├── ExplosionRocket.ini │ │ │ │ ├── ExplosionRocket3D.h │ │ │ │ └── ExplosionRocket3D.ini │ │ │ ├── Fire01 │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── Fire02 │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── Fire03 │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── Flare01 │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ │ ├── Flare02 │ │ │ │ ├── Flaire.h │ │ │ │ └── Flaire.ini │ │ │ ├── Flare03 │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ │ ├── Flares1m │ │ │ │ ├── Flaire.h │ │ │ │ └── Flaire.ini │ │ │ ├── Holder2x4 │ │ │ │ ├── Holder.h │ │ │ │ ├── Holder.ini │ │ │ │ ├── HolderAngle.h │ │ │ │ ├── HolderAngle.ini │ │ │ │ ├── HolderOneSide.h │ │ │ │ └── HolderOneSide.ini │ │ │ ├── LavaRock01 │ │ │ │ ├── LavaRock.h │ │ │ │ ├── LavaRock.ini │ │ │ │ ├── LavaRock02.h │ │ │ │ ├── LavaRock02.ini │ │ │ │ ├── LavaRock03.h │ │ │ │ └── LavaRock03.ini │ │ │ ├── LightBeam01 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ │ ├── LightBeam02 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ │ ├── LightBeam03 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ │ ├── Rail │ │ │ │ ├── rail.h │ │ │ │ ├── rail.ini │ │ │ │ ├── railend.h │ │ │ │ ├── railend.ini │ │ │ │ ├── railstart.h │ │ │ │ └── railstart.ini │ │ │ ├── RotatingFlare01 │ │ │ │ ├── RotatingFlare.h │ │ │ │ └── RotatingFlare.ini │ │ │ ├── ShockWave │ │ │ │ ├── Ring.h │ │ │ │ ├── Ring.ini │ │ │ │ ├── Ring2.h │ │ │ │ └── Ring2.ini │ │ │ ├── ShockWave01 │ │ │ │ ├── ShockWave.h │ │ │ │ └── ShockWave.ini │ │ │ ├── ShockWaveGreen │ │ │ │ ├── ShockWaveGreen.h │ │ │ │ └── ShockWaveGreen.ini │ │ │ ├── Smoke01 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke02 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke03 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke04 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke05 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke06 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── SmokeLine │ │ │ │ ├── SmokeLine.h │ │ │ │ └── SmokeLine.ini │ │ │ ├── SmokeLine01 │ │ │ │ ├── SmokeLine.h │ │ │ │ └── SmokeLine.ini │ │ │ ├── SmokeLine02 │ │ │ │ ├── SmokeLine.h │ │ │ │ └── SmokeLine.ini │ │ │ ├── Sphere01 │ │ │ │ ├── Sphere.h │ │ │ │ └── Sphere.ini │ │ │ ├── StainOnTheWall │ │ │ │ ├── Stain.h │ │ │ │ └── Stain.ini │ │ │ ├── Teleport01 │ │ │ │ ├── Teleport.h │ │ │ │ └── Teleport.ini │ │ │ ├── Water01 │ │ │ │ ├── Water.h │ │ │ │ └── Water.ini │ │ │ ├── WaterFall01 │ │ │ │ ├── WaterFall.h │ │ │ │ └── WaterFall.ini │ │ │ ├── WaterFoam01 │ │ │ │ ├── Puff.h │ │ │ │ └── Puff.ini │ │ │ ├── WaterFoam02 │ │ │ │ ├── Foam.h │ │ │ │ └── Foam.ini │ │ │ ├── WaterFoam03 │ │ │ │ ├── Foam.h │ │ │ │ └── Foam.ini │ │ │ └── Weapons │ │ │ │ ├── Flare01 │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ │ │ └── Flare02 │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ ├── ElsaPromo │ │ │ ├── CurvedSurfaces.h │ │ │ ├── CurvedSurfaces.ini │ │ │ ├── ElsaLogoLow.h │ │ │ ├── ElsaLogoLow.ini │ │ │ └── Temple │ │ │ │ ├── DoorLeft.h │ │ │ │ ├── DoorLeft.ini │ │ │ │ ├── DoorRight.h │ │ │ │ └── DoorRight.ini │ │ ├── Enemies │ │ │ ├── Beast │ │ │ │ ├── Beast.h │ │ │ │ ├── Beast.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── ProjectileOld │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── ProjectileOld2 │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ └── ProjectileOrg │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── Beast_ │ │ │ │ ├── Beast.h │ │ │ │ ├── Beast.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── Boneman │ │ │ │ ├── Boneman.h │ │ │ │ ├── Boneman.ini │ │ │ │ ├── Debris │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Body.ini │ │ │ │ │ ├── Hand.h │ │ │ │ │ ├── Hand.ini │ │ │ │ │ ├── Legs.h │ │ │ │ │ └── Legs.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── Catman │ │ │ │ ├── CatMan.h │ │ │ │ ├── CatMan.ini │ │ │ │ ├── Fire │ │ │ │ │ ├── CatmanFire.h │ │ │ │ │ └── CatmanFire.ini │ │ │ │ ├── FireOld │ │ │ │ │ ├── CatmanFire.h │ │ │ │ │ └── CatmanFire.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── ChainSawFreak │ │ │ │ ├── Freak.h │ │ │ │ ├── Freak.ini │ │ │ │ ├── Saw.h │ │ │ │ └── Saw.ini │ │ │ ├── Cyborg │ │ │ │ ├── AssHole.h │ │ │ │ ├── AssHole.ini │ │ │ │ ├── Bike.h │ │ │ │ ├── Bike.ini │ │ │ │ ├── Cyborg.h │ │ │ │ ├── Cyborg.ini │ │ │ │ ├── CyborgONEPART.h │ │ │ │ ├── CyborgONEPART.ini │ │ │ │ ├── Foot.h │ │ │ │ ├── Foot.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── LeftLowerArm.h │ │ │ │ ├── LeftLowerArm.ini │ │ │ │ ├── LeftLowerLeg.h │ │ │ │ ├── LeftLowerLeg.ini │ │ │ │ ├── LeftUpperArm.h │ │ │ │ ├── LeftUpperArm.ini │ │ │ │ ├── LeftUpperLeg.h │ │ │ │ ├── LeftUpperLeg.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectile.ini │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ ├── LaserProjectileGlow01.ini │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── RightLowerArm.h │ │ │ │ ├── RightLowerArm.ini │ │ │ │ ├── RightLowerLeg.h │ │ │ │ ├── RightLowerLeg.ini │ │ │ │ ├── RightUpperArm.h │ │ │ │ ├── RightUpperArm.ini │ │ │ │ ├── RightUpperLeg.h │ │ │ │ ├── RightUpperLeg.ini │ │ │ │ ├── Termi+rifle.h │ │ │ │ ├── Termi+rifle.ini │ │ │ │ ├── Torso.h │ │ │ │ └── Torso.ini │ │ │ ├── Devil │ │ │ │ ├── Devil.h │ │ │ │ ├── Devil.ini │ │ │ │ ├── DevilHead.h │ │ │ │ ├── DevilHead.ini │ │ │ │ ├── DevilTest.h │ │ │ │ ├── DevilTest.ini │ │ │ │ ├── GoatHead.h │ │ │ │ ├── GoatHead.ini │ │ │ │ ├── SkullHead.h │ │ │ │ ├── SkullHead.ini │ │ │ │ └── Weapons │ │ │ │ │ ├── ElectricityFlare.h │ │ │ │ │ ├── ElectricityFlare.ini │ │ │ │ │ ├── ElectricityGun.h │ │ │ │ │ ├── ElectricityGun.ini │ │ │ │ │ ├── Laser.h │ │ │ │ │ ├── Laser.ini │ │ │ │ │ ├── ProjectileGun.h │ │ │ │ │ ├── ProjectileGun.ini │ │ │ │ │ ├── RocketLauncher.h │ │ │ │ │ └── RocketLauncher.ini │ │ │ ├── Devil_old │ │ │ │ ├── Flare.h │ │ │ │ ├── Flare.ini │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── MiniGunItem.ini │ │ │ │ ├── Minigun.h │ │ │ │ ├── Minigun.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── devil.h │ │ │ │ ├── devil.ini │ │ │ │ ├── devil2.h │ │ │ │ ├── devil2.ini │ │ │ │ ├── shield.h │ │ │ │ └── shield.ini │ │ │ ├── DragonMan │ │ │ │ ├── Debris │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Body.ini │ │ │ │ │ ├── Head.h │ │ │ │ │ ├── Head.ini │ │ │ │ │ ├── Leg.h │ │ │ │ │ ├── Leg.ini │ │ │ │ │ ├── Tail.h │ │ │ │ │ ├── Tail.ini │ │ │ │ │ ├── Wing.h │ │ │ │ │ └── Wing.ini │ │ │ │ ├── DragonMan.h │ │ │ │ ├── DragonMan.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── ElementalAir │ │ │ │ ├── Elemental.h │ │ │ │ └── Elemental.ini │ │ │ ├── ElementalLava │ │ │ │ ├── BodyFlare.h │ │ │ │ ├── BodyFlare.ini │ │ │ │ ├── ElementalLava.h │ │ │ │ ├── ElementalLava.ini │ │ │ │ ├── HandFlare.h │ │ │ │ ├── HandFlare.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── LavaBomb.h │ │ │ │ │ ├── LavaBomb.ini │ │ │ │ │ ├── LavaStone.h │ │ │ │ │ ├── LavaStone.ini │ │ │ │ │ ├── LavaStoneFlare.h │ │ │ │ │ └── LavaStoneFlare.ini │ │ │ ├── Elementals │ │ │ │ ├── AirMan.h │ │ │ │ ├── AirMan.ini │ │ │ │ ├── IceMan.h │ │ │ │ ├── IceMan.ini │ │ │ │ ├── Icepick.h │ │ │ │ ├── Icepick.ini │ │ │ │ ├── LavaMan.h │ │ │ │ ├── LavaMan.ini │ │ │ │ ├── LavaManFX │ │ │ │ │ ├── BodyFlare.h │ │ │ │ │ ├── BodyFlare.ini │ │ │ │ │ ├── HandFlare.h │ │ │ │ │ └── HandFlare.ini │ │ │ │ ├── Maul.h │ │ │ │ ├── Maul.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Fireball.h │ │ │ │ │ ├── Fireball.ini │ │ │ │ │ ├── IcePyramid.h │ │ │ │ │ ├── IcePyramid.ini │ │ │ │ │ ├── IcePyramidFlare.h │ │ │ │ │ ├── IcePyramidFlare.ini │ │ │ │ │ ├── LavaBomb.h │ │ │ │ │ ├── LavaBomb.ini │ │ │ │ │ ├── LavaBombFlare.h │ │ │ │ │ ├── LavaBombFlare.ini │ │ │ │ │ ├── LavaStone.h │ │ │ │ │ ├── LavaStone.ini │ │ │ │ │ ├── LavaStoneFlare.h │ │ │ │ │ ├── LavaStoneFlare.ini │ │ │ │ │ ├── Stone.h │ │ │ │ │ ├── Stone.ini │ │ │ │ │ ├── WaterDrop.h │ │ │ │ │ └── WaterDrop.ini │ │ │ │ ├── StoneManFX │ │ │ │ │ ├── BodyFlare.h │ │ │ │ │ └── BodyFlare.ini │ │ │ │ ├── Stoneman.h │ │ │ │ ├── Stoneman.ini │ │ │ │ ├── Twister.h │ │ │ │ ├── Twister.ini │ │ │ │ ├── WaterMan.h │ │ │ │ ├── WaterMan.ini │ │ │ │ └── WaterManFX │ │ │ │ │ ├── BodyFlare.h │ │ │ │ │ └── BodyFlare.ini │ │ │ ├── Eyeman │ │ │ │ ├── Debris │ │ │ │ │ ├── Arm.h │ │ │ │ │ ├── Arm.ini │ │ │ │ │ ├── Leg.h │ │ │ │ │ ├── Leg.ini │ │ │ │ │ ├── Torso.h │ │ │ │ │ └── Torso.ini │ │ │ │ ├── Eyeman.h │ │ │ │ └── Eyeman.ini │ │ │ ├── EyemanOld │ │ │ │ ├── Projectile │ │ │ │ │ ├── Acid.h │ │ │ │ │ └── Acid.ini │ │ │ │ ├── eyeman.h │ │ │ │ └── eyeman.ini │ │ │ ├── Fish │ │ │ │ ├── Fish.h │ │ │ │ ├── Fish.ini │ │ │ │ ├── Glow.h │ │ │ │ └── Glow.ini │ │ │ ├── Fishman │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── fishman.h │ │ │ │ └── fishman.ini │ │ │ ├── Gizmo │ │ │ │ ├── Gizmo.h │ │ │ │ └── Gizmo.ini │ │ │ ├── HeadManOld │ │ │ │ ├── Bag.h │ │ │ │ ├── Bag.ini │ │ │ │ ├── ChainSaw.h │ │ │ │ ├── ChainSaw.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── HeadMan.h │ │ │ │ ├── HeadMan.ini │ │ │ │ ├── Headonstick.h │ │ │ │ ├── Headonstick.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Blade.h │ │ │ │ │ ├── Blade.ini │ │ │ │ │ ├── Bomb.h │ │ │ │ │ ├── Bomb.ini │ │ │ │ │ ├── FireCracker.h │ │ │ │ │ ├── FireCracker.ini │ │ │ │ │ ├── FireTrail.h │ │ │ │ │ └── FireTrail.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── Saw.h │ │ │ │ ├── Saw.ini │ │ │ │ ├── Stick.h │ │ │ │ └── Stick.ini │ │ │ ├── Headman │ │ │ │ ├── ChainSaw.h │ │ │ │ ├── ChainSaw.ini │ │ │ │ ├── Debris │ │ │ │ │ ├── Arm.h │ │ │ │ │ ├── Arm.ini │ │ │ │ │ ├── Leg.h │ │ │ │ │ ├── Leg.ini │ │ │ │ │ ├── Torso.h │ │ │ │ │ └── Torso.ini │ │ │ │ ├── FireCrackerHead.h │ │ │ │ ├── FireCrackerHead.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Blade.h │ │ │ │ │ ├── Blade.ini │ │ │ │ │ ├── Bomb.h │ │ │ │ │ ├── Bomb.ini │ │ │ │ │ ├── FireCracker.h │ │ │ │ │ ├── FireCracker.ini │ │ │ │ │ ├── FireTrail.h │ │ │ │ │ └── FireTrail.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── Saw.h │ │ │ │ ├── Saw.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── headman.h │ │ │ │ ├── headman.ini │ │ │ │ ├── headmantest.h │ │ │ │ └── headmantest.ini │ │ │ ├── HuanMan │ │ │ │ ├── Huanman.h │ │ │ │ ├── Huanman.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Flare.h │ │ │ │ │ ├── Flare.ini │ │ │ │ │ ├── Projectile.h │ │ │ │ │ ├── Projectile.ini │ │ │ │ │ └── tmp │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── MAMUTMAN │ │ │ │ ├── Mamutman.h │ │ │ │ ├── Mamutman.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Mamutman.h │ │ │ │ │ └── Mamutman.ini │ │ │ ├── MANTAMAN │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── mantaman.h │ │ │ │ └── mantaman.ini │ │ │ ├── Mamut │ │ │ │ ├── MAMUT.H │ │ │ │ ├── MAMUT.INI │ │ │ │ ├── OBJECTS │ │ │ │ │ ├── mamut.h │ │ │ │ │ └── mamut.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── MamutProjectile.h │ │ │ │ │ └── MamutProjectile.ini │ │ │ ├── Mental │ │ │ │ ├── BrainBottle.h │ │ │ │ ├── BrainBottle.ini │ │ │ │ ├── BrainDrain.h │ │ │ │ ├── BrainDrain.ini │ │ │ │ ├── BrainHoses.h │ │ │ │ ├── BrainHoses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Mental.h │ │ │ │ └── Mental.ini │ │ │ ├── Robots │ │ │ │ ├── DrivingSpider │ │ │ │ │ ├── DrivingSpider.h │ │ │ │ │ ├── DrivingSpider.ini │ │ │ │ │ ├── Weapon.h │ │ │ │ │ └── Weapon.ini │ │ │ │ ├── DrivingWheel │ │ │ │ │ ├── DrivingWheel.ini │ │ │ │ │ ├── Robot.h │ │ │ │ │ ├── Robot.ini │ │ │ │ │ └── org │ │ │ │ │ │ └── Robot.ini │ │ │ │ ├── FloatBall │ │ │ │ │ ├── Robot.h │ │ │ │ │ └── Robot.ini │ │ │ │ ├── FloatKamikaze │ │ │ │ │ ├── FloatKamikaze.h │ │ │ │ │ ├── FloatKamikaze.ini │ │ │ │ │ ├── Ring.h │ │ │ │ │ └── Ring.ini │ │ │ │ ├── FlyingFighter │ │ │ │ │ ├── FlyingFighter.h │ │ │ │ │ ├── FlyingFighter.ini │ │ │ │ │ ├── Ship.h │ │ │ │ │ └── Ship.ini │ │ │ │ ├── SentryBall │ │ │ │ │ ├── Ball.h │ │ │ │ │ ├── Ball.ini │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect.ini │ │ │ │ │ ├── SentryBall.h │ │ │ │ │ └── SentryBall.ini │ │ │ │ ├── SentryCannon │ │ │ │ │ ├── Cannon.ini │ │ │ │ │ ├── MovingArm.ini │ │ │ │ │ └── SentryCannon.ini │ │ │ │ └── SentryGun │ │ │ │ │ ├── Gun.ini │ │ │ │ │ └── SentryGun.ini │ │ │ ├── SCORPMAN │ │ │ │ ├── Flare.h │ │ │ │ ├── Flare.ini │ │ │ │ ├── Gun.h │ │ │ │ ├── Gun.ini │ │ │ │ ├── scorpman.h │ │ │ │ └── scorpman.ini │ │ │ ├── Walker │ │ │ │ ├── Debris │ │ │ │ │ ├── Head.h │ │ │ │ │ ├── Head.ini │ │ │ │ │ ├── Head2.h │ │ │ │ │ ├── Head2.ini │ │ │ │ │ ├── Leg.h │ │ │ │ │ └── Leg.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── Walker.h │ │ │ │ └── Walker.ini │ │ │ ├── WereBull │ │ │ │ ├── WereBull.h │ │ │ │ └── WereBull.ini │ │ │ ├── WereBullOld │ │ │ │ ├── WereBull.h │ │ │ │ └── WereBull.ini │ │ │ └── Woman │ │ │ │ ├── Projectile │ │ │ │ ├── Projectile.h │ │ │ │ └── Projectile.ini │ │ │ │ ├── Woman.h │ │ │ │ ├── Woman.ini │ │ │ │ ├── WomanForArtwork.h │ │ │ │ └── WomanForArtwork.ini │ │ ├── IHVTest │ │ │ ├── AnimatedTexture.h │ │ │ ├── AnimatedTexture.ini │ │ │ ├── Bump.h │ │ │ ├── Bump.ini │ │ │ ├── CurvedSurfaces.h │ │ │ ├── CurvedSurfaces.ini │ │ │ ├── Diffuse.h │ │ │ ├── Diffuse.ini │ │ │ ├── DoubleSided.h │ │ │ ├── DoubleSided.ini │ │ │ ├── DoubleSided_Add.h │ │ │ ├── DoubleSided_Add.ini │ │ │ ├── DoubleSided_Multiply.h │ │ │ ├── DoubleSided_Multiply.ini │ │ │ ├── EffectTexture.h │ │ │ ├── EffectTexture.ini │ │ │ ├── Flat.h │ │ │ ├── Flat.ini │ │ │ ├── FullBright.h │ │ │ ├── FullBright.ini │ │ │ ├── GlassCurvedSurfaces.h │ │ │ ├── GlassCurvedSurfaces.ini │ │ │ ├── Ignored.h │ │ │ ├── Ignored.ini │ │ │ ├── Lightning.h │ │ │ ├── Lightning.ini │ │ │ ├── ModelAnimation.h │ │ │ ├── ModelAnimation.ini │ │ │ ├── Patch.h │ │ │ ├── Patch.ini │ │ │ ├── Reflection.h │ │ │ ├── Reflection.ini │ │ │ ├── Smooth.h │ │ │ ├── Smooth.ini │ │ │ ├── Specularity.h │ │ │ ├── Specularity.ini │ │ │ ├── Transparent.h │ │ │ ├── Transparent.ini │ │ │ ├── Trasluscent.h │ │ │ └── Trasluscent.ini │ │ ├── Items │ │ │ ├── Ammo │ │ │ │ ├── Bullets │ │ │ │ │ ├── Bullets.h │ │ │ │ │ └── Bullets.ini │ │ │ │ ├── Cannonball │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ ├── CannonBall.ini │ │ │ │ │ ├── CannonBallQuad.h │ │ │ │ │ └── CannonBallQuad.ini │ │ │ │ ├── Electricity │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect.ini │ │ │ │ │ ├── Effect2.h │ │ │ │ │ ├── Effect2.ini │ │ │ │ │ ├── Electricity.h │ │ │ │ │ └── Electricity.ini │ │ │ │ ├── Grenades │ │ │ │ │ ├── Grenades.h │ │ │ │ │ └── Grenades.ini │ │ │ │ ├── Napalm │ │ │ │ │ ├── Napalm.h │ │ │ │ │ └── Napalm.ini │ │ │ │ ├── Rockets │ │ │ │ │ ├── Rockets.h │ │ │ │ │ └── Rockets.ini │ │ │ │ ├── Shells │ │ │ │ │ ├── Shells.h │ │ │ │ │ └── Shells.ini │ │ │ │ └── _Old │ │ │ │ │ ├── Bullets │ │ │ │ │ ├── Bullets.h │ │ │ │ │ └── Bullets.ini │ │ │ │ │ ├── Cannonball │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ ├── CannonBall.ini │ │ │ │ │ ├── CannonBallQuad.h │ │ │ │ │ └── CannonBallQuad.ini │ │ │ │ │ ├── Electricity │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect.ini │ │ │ │ │ ├── Effect2.h │ │ │ │ │ ├── Effect2.ini │ │ │ │ │ ├── Electricity.h │ │ │ │ │ └── Electricity.ini │ │ │ │ │ ├── Grenades │ │ │ │ │ ├── Grenade.h │ │ │ │ │ ├── Grenade.ini │ │ │ │ │ ├── Grenades.h │ │ │ │ │ └── Grenades.ini │ │ │ │ │ ├── Rockets │ │ │ │ │ ├── Rocket01.h │ │ │ │ │ ├── Rocket01.ini │ │ │ │ │ ├── Rockets.h │ │ │ │ │ └── Rockets.ini │ │ │ │ │ └── Shells │ │ │ │ │ ├── Shells.h │ │ │ │ │ └── Shells.ini │ │ │ ├── Armor │ │ │ │ ├── Armor_1.h │ │ │ │ ├── Armor_1.ini │ │ │ │ ├── Armor_100.h │ │ │ │ ├── Armor_100.ini │ │ │ │ ├── Armor_200.h │ │ │ │ ├── Armor_200.ini │ │ │ │ ├── Armor_25.h │ │ │ │ ├── Armor_25.ini │ │ │ │ ├── Armor_50.h │ │ │ │ └── Armor_50.ini │ │ │ ├── Flares │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ │ ├── Health │ │ │ │ ├── Large │ │ │ │ │ ├── Large.h │ │ │ │ │ └── Large.ini │ │ │ │ ├── Medium │ │ │ │ │ ├── Medium.h │ │ │ │ │ └── Medium.ini │ │ │ │ ├── Pill │ │ │ │ │ ├── Pill.h │ │ │ │ │ └── Pill.ini │ │ │ │ ├── Small │ │ │ │ │ ├── Small.h │ │ │ │ │ └── Small.ini │ │ │ │ ├── Super │ │ │ │ │ ├── Super.h │ │ │ │ │ └── Super.ini │ │ │ │ └── SuperOrg │ │ │ │ │ ├── Super.h │ │ │ │ │ └── Super.ini │ │ │ ├── ItemHolder │ │ │ │ ├── ItemHolder.h │ │ │ │ └── ItemHolder.ini │ │ │ ├── Keys │ │ │ │ ├── AnkhGold │ │ │ │ │ ├── Ankh.h │ │ │ │ │ └── Ankh.ini │ │ │ │ ├── AnkhStone │ │ │ │ │ ├── Ankh.h │ │ │ │ │ └── Ankh.ini │ │ │ │ ├── AnkhWood │ │ │ │ │ ├── Ankh.h │ │ │ │ │ └── Ankh.ini │ │ │ │ ├── Elements │ │ │ │ │ ├── Air.h │ │ │ │ │ ├── Air.ini │ │ │ │ │ ├── Earth.h │ │ │ │ │ ├── Earth.ini │ │ │ │ │ ├── Fire.h │ │ │ │ │ ├── Fire.ini │ │ │ │ │ ├── Old │ │ │ │ │ │ ├── Earth.h │ │ │ │ │ │ └── Earth.ini │ │ │ │ │ ├── Water.h │ │ │ │ │ └── Water.ini │ │ │ │ ├── EyeOfRa │ │ │ │ │ ├── EyeOfRa.h │ │ │ │ │ └── EyeOfRa.ini │ │ │ │ ├── EyeOfRaCoin │ │ │ │ │ ├── CoinLeft.h │ │ │ │ │ ├── CoinLeft.ini │ │ │ │ │ ├── CoinRight.h │ │ │ │ │ └── CoinRight.ini │ │ │ │ ├── GoldSphinx │ │ │ │ │ ├── GoldSphinx.h │ │ │ │ │ └── GoldSphinx.ini │ │ │ │ ├── HorSons │ │ │ │ │ ├── HorSons.h │ │ │ │ │ └── HorSons.ini │ │ │ │ ├── Luxor │ │ │ │ │ ├── FeatherOfTruth.h │ │ │ │ │ ├── FeatherOfTruth.ini │ │ │ │ │ ├── GoldHeart.h │ │ │ │ │ └── GoldHeart.ini │ │ │ │ ├── RaKey │ │ │ │ │ ├── Key.h │ │ │ │ │ └── Key.ini │ │ │ │ ├── RaSign │ │ │ │ │ ├── Sign.h │ │ │ │ │ └── Sign.ini │ │ │ │ ├── Scarab │ │ │ │ │ ├── Scarab.h │ │ │ │ │ └── Scarab.ini │ │ │ │ ├── Uaset │ │ │ │ │ ├── Uaset.h │ │ │ │ │ └── Uaset.ini │ │ │ │ └── Wings │ │ │ │ │ ├── Wings.h │ │ │ │ │ └── Wings.ini │ │ │ ├── Pergament │ │ │ │ ├── Pergament.h │ │ │ │ └── Pergament.ini │ │ │ └── PowerUps │ │ │ │ ├── BackPack │ │ │ │ ├── BackPack.h │ │ │ │ └── BackPack.ini │ │ │ │ ├── SeriousDamage │ │ │ │ ├── SeriousDamage.h │ │ │ │ └── SeriousDamage.ini │ │ │ │ ├── SeriousPack │ │ │ │ ├── SeriousPack.h │ │ │ │ └── SeriousPack.ini │ │ │ │ └── _Old │ │ │ │ └── SeriousPack │ │ │ │ ├── SeriousPack.h │ │ │ │ └── SeriousPack.ini │ │ ├── LightSources │ │ │ ├── FireHolder01 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder14 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder16 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder46 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder49 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder51 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── Torch03 │ │ │ │ ├── Torch.h │ │ │ │ └── Torch.ini │ │ │ ├── Torch04 │ │ │ │ ├── Torch.h │ │ │ │ └── Torch.ini │ │ │ ├── WallTorch01 │ │ │ │ ├── WallTorch.h │ │ │ │ └── WallTorch.ini │ │ │ └── WallTorch02 │ │ │ │ ├── WallTorch.h │ │ │ │ └── WallTorch.ini │ │ ├── MenuOld │ │ │ ├── Arrow.h │ │ │ ├── Arrow.ini │ │ │ ├── BigButton.h │ │ │ ├── BigButton.ini │ │ │ ├── BigLongButton.h │ │ │ ├── BigLongButton.ini │ │ │ ├── ExclamationMark.h │ │ │ ├── ExclamationMark.ini │ │ │ ├── InfoTable.h │ │ │ ├── InfoTable.ini │ │ │ ├── Key.h │ │ │ ├── Key.ini │ │ │ ├── Key2V.h │ │ │ ├── Key2V.ini │ │ │ ├── KeyH1_5.h │ │ │ ├── KeyH1_5.ini │ │ │ ├── KeyH2.h │ │ │ ├── KeyH2.ini │ │ │ ├── KeyH3.h │ │ │ ├── KeyH3.ini │ │ │ ├── KeyNoDefined.h │ │ │ ├── KeyNoDefined.ini │ │ │ ├── KeyReturn.h │ │ │ ├── KeyReturn.ini │ │ │ ├── KeySpace.h │ │ │ ├── KeySpace.ini │ │ │ ├── LittleTrigger.h │ │ │ ├── LittleTrigger.ini │ │ │ ├── Monitor.h │ │ │ ├── Monitor.ini │ │ │ ├── Mouse.h │ │ │ ├── Mouse.ini │ │ │ ├── NormalButton.h │ │ │ ├── NormalButton.ini │ │ │ ├── PrevNextButton.h │ │ │ ├── PrevNextButton.ini │ │ │ ├── Question.h │ │ │ ├── Question.ini │ │ │ ├── SeriousSamSign │ │ │ │ ├── SeriousSamSign.h │ │ │ │ └── SeriousSamSign.ini │ │ │ ├── Slider.h │ │ │ ├── Slider.ini │ │ │ ├── SliderInside.h │ │ │ ├── SliderInside.ini │ │ │ ├── SplitScreen.h │ │ │ ├── SplitScreen.ini │ │ │ ├── TitleButton.h │ │ │ ├── TitleButton.ini │ │ │ ├── ValidMode.h │ │ │ ├── ValidMode.ini │ │ │ ├── VeryLittleTrigger.h │ │ │ ├── VeryLittleTrigger.ini │ │ │ └── elfold │ │ │ │ ├── Arrow.h │ │ │ │ ├── Arrow.ini │ │ │ │ ├── BigButton.h │ │ │ │ ├── BigButton.ini │ │ │ │ ├── BigLongButton.h │ │ │ │ ├── BigLongButton.ini │ │ │ │ ├── Buttons_Old │ │ │ │ ├── BigButton.h │ │ │ │ ├── BigButton.ini │ │ │ │ ├── BigLongButton.h │ │ │ │ ├── BigLongButton.ini │ │ │ │ ├── LittleTriger.h │ │ │ │ ├── LittleTriger.ini │ │ │ │ ├── PrevNextButton.h │ │ │ │ ├── PrevNextButton.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── TitleButton.h │ │ │ │ ├── TitleButton.ini │ │ │ │ ├── ValidMode.h │ │ │ │ └── ValidMode.ini │ │ │ │ ├── ExclamationMark.h │ │ │ │ ├── ExclamationMark.ini │ │ │ │ ├── InfoTable.h │ │ │ │ ├── InfoTable.ini │ │ │ │ ├── Key.h │ │ │ │ ├── Key.ini │ │ │ │ ├── Key2V.h │ │ │ │ ├── Key2V.ini │ │ │ │ ├── KeyH1_5.h │ │ │ │ ├── KeyH1_5.ini │ │ │ │ ├── KeyH2.h │ │ │ │ ├── KeyH2.ini │ │ │ │ ├── KeyH3.h │ │ │ │ ├── KeyH3.ini │ │ │ │ ├── KeyNoDefined.h │ │ │ │ ├── KeyNoDefined.ini │ │ │ │ ├── KeyReturn.h │ │ │ │ ├── KeyReturn.ini │ │ │ │ ├── KeySpace.h │ │ │ │ ├── KeySpace.ini │ │ │ │ ├── LittleTriger.h │ │ │ │ ├── LittleTriger.ini │ │ │ │ ├── LittleTrigger.h │ │ │ │ ├── LittleTrigger.ini │ │ │ │ ├── Monitor.h │ │ │ │ ├── Monitor.ini │ │ │ │ ├── Mouse.h │ │ │ │ ├── Mouse.ini │ │ │ │ ├── NormalButton.h │ │ │ │ ├── NormalButton.ini │ │ │ │ ├── PrevNextButton.h │ │ │ │ ├── PrevNextButton.ini │ │ │ │ ├── Question.h │ │ │ │ ├── Question.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── SliderInside.h │ │ │ │ ├── SliderInside.ini │ │ │ │ ├── SplitScreen.h │ │ │ │ ├── SplitScreen.ini │ │ │ │ ├── TitleButton.h │ │ │ │ ├── TitleButton.ini │ │ │ │ ├── ValidMode.h │ │ │ │ ├── ValidMode.ini │ │ │ │ ├── VeryLittleTrigger.h │ │ │ │ └── VeryLittleTrigger.ini │ │ ├── MissionPack │ │ │ ├── Items │ │ │ │ └── Ammo │ │ │ │ │ └── Napalm │ │ │ │ │ ├── Napalm.h │ │ │ │ │ └── Napalm.ini │ │ │ ├── Player │ │ │ │ └── SeriousSam │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Glasses.h │ │ │ │ │ ├── Head.h │ │ │ │ │ └── Player.h │ │ │ └── Weapons │ │ │ │ ├── Flamer │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ │ └── Sniper │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Sniper.h │ │ │ │ ├── Sniper.ini │ │ │ │ ├── SniperItem.h │ │ │ │ └── SniperItem.ini │ │ ├── Objects │ │ │ ├── Crosses │ │ │ │ └── Cross01 │ │ │ │ │ ├── Cross.h │ │ │ │ │ └── Cross.ini │ │ │ ├── Egypt │ │ │ │ ├── Furniture │ │ │ │ │ ├── EggWithHorns │ │ │ │ │ │ ├── EggWithHorns.h │ │ │ │ │ │ └── EggWithHorns.ini │ │ │ │ │ └── Fish │ │ │ │ │ │ ├── Fish.h │ │ │ │ │ │ └── Fish.ini │ │ │ │ ├── Gods │ │ │ │ │ ├── Amon │ │ │ │ │ │ ├── Amon.h │ │ │ │ │ │ └── Amon.ini │ │ │ │ │ ├── Anubis01 │ │ │ │ │ │ ├── Anubis.h │ │ │ │ │ │ └── Anubis.ini │ │ │ │ │ ├── Anubis02 │ │ │ │ │ │ ├── Anubis.h │ │ │ │ │ │ └── Anubis.ini │ │ │ │ │ ├── HorChild │ │ │ │ │ │ ├── HorChild.h │ │ │ │ │ │ └── HorChild.ini │ │ │ │ │ ├── HorSons │ │ │ │ │ │ ├── HorSons.h │ │ │ │ │ │ └── HorSons.ini │ │ │ │ │ ├── Khnum │ │ │ │ │ │ ├── Khnum.h │ │ │ │ │ │ └── Khnum.ini │ │ │ │ │ ├── Khonsu │ │ │ │ │ │ ├── Khonsu.h │ │ │ │ │ │ └── Khonsu.ini │ │ │ │ │ ├── Mestret │ │ │ │ │ │ ├── Mestret.h │ │ │ │ │ │ └── Mestret.ini │ │ │ │ │ ├── Nefthis │ │ │ │ │ │ ├── Nefthis.h │ │ │ │ │ │ └── Nefthis.ini │ │ │ │ │ ├── Neith │ │ │ │ │ │ ├── Neith.h │ │ │ │ │ │ └── Neith.ini │ │ │ │ │ ├── Osiris │ │ │ │ │ │ ├── Osiris.h │ │ │ │ │ │ └── Osiris.ini │ │ │ │ │ ├── Ptah │ │ │ │ │ │ ├── Ptah.h │ │ │ │ │ │ └── Ptah.ini │ │ │ │ │ ├── Ra │ │ │ │ │ │ ├── Ra.h │ │ │ │ │ │ └── Ra.ini │ │ │ │ │ ├── Sebek │ │ │ │ │ │ ├── Sebek.h │ │ │ │ │ │ └── Sebek.ini │ │ │ │ │ ├── Sekhmet │ │ │ │ │ │ ├── Sekhmet.h │ │ │ │ │ │ └── Sekhmet.ini │ │ │ │ │ ├── Toth │ │ │ │ │ │ ├── Toth.h │ │ │ │ │ │ └── Toth.ini │ │ │ │ │ ├── TothMonkey │ │ │ │ │ │ ├── TothMonkey.h │ │ │ │ │ │ └── TothMonkey.ini │ │ │ │ │ └── Uaset │ │ │ │ │ │ ├── Uaset.h │ │ │ │ │ │ └── Uaset.ini │ │ │ │ ├── Mumies │ │ │ │ │ └── Mummy01 │ │ │ │ │ │ ├── Mummy.h │ │ │ │ │ │ └── Mummy.ini │ │ │ │ └── Statues │ │ │ │ │ ├── Cat │ │ │ │ │ ├── Cat.h │ │ │ │ │ ├── Cat.ini │ │ │ │ │ ├── Cat_testbump.h │ │ │ │ │ └── Cat_testbump.ini │ │ │ │ │ ├── Head01 │ │ │ │ │ ├── Head.h │ │ │ │ │ └── Head.ini │ │ │ │ │ ├── Head02 │ │ │ │ │ ├── Head.h │ │ │ │ │ └── Head.ini │ │ │ │ │ ├── Head03 │ │ │ │ │ ├── Head.h │ │ │ │ │ └── Head.ini │ │ │ │ │ ├── Jackal │ │ │ │ │ ├── Jackal.h │ │ │ │ │ └── Jackal.ini │ │ │ │ │ ├── Jaguar │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Jaguar02 │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Jaguar03 │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Jaguar04 │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Sphinx │ │ │ │ │ ├── Sphinx.h │ │ │ │ │ └── Sphinx.ini │ │ │ │ │ ├── Statue01 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue02 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue03 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue04 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue05 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue06 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ └── Statue07 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ ├── FireHolders │ │ │ │ └── Torch01 │ │ │ │ │ ├── Torch.h │ │ │ │ │ └── Torch.ini │ │ │ ├── Flag04 │ │ │ │ ├── Flag.h │ │ │ │ └── Flag.ini │ │ │ ├── FlagPole03 │ │ │ │ ├── FlagPole.h │ │ │ │ └── FlagPole.ini │ │ │ ├── Torches │ │ │ │ └── Torch01 │ │ │ │ │ ├── Torch.h │ │ │ │ │ └── Torch.ini │ │ │ └── second │ │ │ │ ├── Bed04 │ │ │ │ ├── Bed04.h │ │ │ │ └── Bed04.ini │ │ │ │ ├── BedCover01 │ │ │ │ ├── BedCover01.h │ │ │ │ └── BedCover01.ini │ │ │ │ ├── Chairwooden01 │ │ │ │ ├── ChairWooden01.h │ │ │ │ └── ChairWooden01.ini │ │ │ │ ├── Ra_Sign02 │ │ │ │ ├── Ra_Sign02.h │ │ │ │ └── Ra_Sign02.ini │ │ │ │ ├── Raspelo03 │ │ │ │ ├── Raspelo03.h │ │ │ │ └── Raspelo03.ini │ │ │ │ ├── Sofa01 │ │ │ │ ├── Sofa01.h │ │ │ │ └── Sofa01.ini │ │ │ │ ├── Sphinx01 │ │ │ │ ├── Spinx01.h │ │ │ │ └── Spinx01.ini │ │ │ │ ├── StoneChair01 │ │ │ │ ├── StoneChair01.h │ │ │ │ └── StoneChair01.ini │ │ │ │ ├── Stool02 │ │ │ │ ├── Stool02.h │ │ │ │ └── Stool02.ini │ │ │ │ ├── Stool03 │ │ │ │ ├── Stool03.h │ │ │ │ └── Stool03.ini │ │ │ │ ├── Table_Work01 │ │ │ │ ├── Table_Work01.h │ │ │ │ └── Table_Work01.ini │ │ │ │ └── Tent02 │ │ │ │ ├── Tent02.h │ │ │ │ └── Tent02.ini │ │ ├── Plants │ │ │ ├── Bush01 │ │ │ │ ├── Bush.h │ │ │ │ └── Bush.ini │ │ │ ├── Flower01 │ │ │ │ ├── Flower.h │ │ │ │ └── Flower.ini │ │ │ ├── Garden01 │ │ │ │ ├── Garden.h │ │ │ │ └── Garden.ini │ │ │ ├── Garden02 │ │ │ │ ├── Garden.h │ │ │ │ └── Garden.ini │ │ │ ├── Ivy01 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── OldTree02 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── OldTree07 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── Palm02 │ │ │ │ ├── BrokenPalm.h │ │ │ │ ├── BrokenPalm.ini │ │ │ │ ├── Palm.h │ │ │ │ └── Palm.ini │ │ │ ├── Palm10 │ │ │ │ ├── BrokenPalm.h │ │ │ │ ├── BrokenPalm.ini │ │ │ │ ├── Palm.h │ │ │ │ ├── Palm.ini │ │ │ │ ├── PalmLeaf.h │ │ │ │ └── PalmLeaf.ini │ │ │ ├── Palm10Old │ │ │ │ ├── BrokenPalm.h │ │ │ │ ├── BrokenPalm.ini │ │ │ │ ├── Palm.h │ │ │ │ ├── Palm.ini │ │ │ │ ├── PalmLeaf.h │ │ │ │ └── PalmLeaf.ini │ │ │ ├── Palm11 │ │ │ │ ├── Palm.h │ │ │ │ └── Palm.ini │ │ │ └── Plant01 │ │ │ │ ├── Plant.h │ │ │ │ └── Plant.ini │ │ ├── Player │ │ │ ├── BeheadedBen │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── BoxerBarry │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── DiscoDan │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Hair.h │ │ │ │ ├── Hair.ini │ │ │ │ ├── Hat.h │ │ │ │ ├── Hat.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── EmptyEd │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Brain.h │ │ │ │ ├── Brain.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── KleerKenny │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── MightyMarvin │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ └── _Opened │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ ├── PiratePete │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── RedRick │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── NewGlasses │ │ │ │ │ ├── Glasses.h │ │ │ │ │ └── Glasses.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── RockingRyan │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SantaSam │ │ │ │ ├── Beard.h │ │ │ │ ├── Beard.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── PlayerForMapping.h │ │ │ │ ├── PlayerForMapping.ini │ │ │ │ ├── hat.h │ │ │ │ └── hat.ini │ │ │ ├── SeriousSam │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── Soldier │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ └── WildWyat │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Hat.h │ │ │ │ ├── Hat.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ ├── Player_old │ │ │ ├── PiratePete │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── RedRick │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SantaSam │ │ │ │ ├── Beard.h │ │ │ │ ├── Beard.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── hat.h │ │ │ │ └── hat.ini │ │ │ ├── SeriousSam │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── BodyHires.h │ │ │ │ ├── BodyHires.ini │ │ │ │ ├── BodyPromo.h │ │ │ │ ├── BodyPromo.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── PlayerHires.h │ │ │ │ ├── PlayerHires.ini │ │ │ │ ├── PlayerPromo.h │ │ │ │ └── PlayerPromo.ini │ │ │ ├── SeriousSamOld │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Misc │ │ │ │ │ ├── Berretta01.h │ │ │ │ │ ├── Berretta01.ini │ │ │ │ │ ├── Cap01.h │ │ │ │ │ ├── Cap01.ini │ │ │ │ │ ├── Hat01.h │ │ │ │ │ ├── Hat01.ini │ │ │ │ │ ├── Helmet01.h │ │ │ │ │ ├── Helmet01.ini │ │ │ │ │ ├── KnapSack01.h │ │ │ │ │ ├── KnapSack01.ini │ │ │ │ │ ├── KnapSack04.h │ │ │ │ │ ├── KnapSack04.ini │ │ │ │ │ ├── KnapSack05.h │ │ │ │ │ ├── KnapSack05.ini │ │ │ │ │ ├── Knife01.h │ │ │ │ │ └── Knife01.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ └── Test │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Body.ini │ │ │ │ │ ├── Head.h │ │ │ │ │ ├── Head.ini │ │ │ │ │ ├── Player.h │ │ │ │ │ └── Player.ini │ │ │ ├── SeriousSamTmp │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SeriousSammy │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ └── Soldier │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ └── _t │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ ├── Switches │ │ │ └── Switch01 │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ ├── Test │ │ │ ├── 3dexploration │ │ │ │ ├── Box.h │ │ │ │ ├── Box.ini │ │ │ │ ├── Box_Pose.h │ │ │ │ └── Box_Pose.ini │ │ │ ├── Box.h │ │ │ ├── Box.ini │ │ │ ├── Femalet2.h │ │ │ ├── Femalet2.ini │ │ │ ├── MipModelTest.h │ │ │ ├── MipModelTest.ini │ │ │ ├── MultiPolygonMountains.h │ │ │ ├── MultiPolygonMountains.ini │ │ │ ├── MultiPolygonMountainsDisplaced.h │ │ │ ├── MultiPolygonMountainsDisplaced.ini │ │ │ ├── OneBigPolygon.h │ │ │ ├── OneBigPolygon.ini │ │ │ ├── OnePolygon.h │ │ │ ├── OnePolygon.ini │ │ │ ├── PatchTextBox.h │ │ │ ├── PatchTextBox.ini │ │ │ ├── RelfectionOnBox.h │ │ │ ├── RelfectionOnBox.ini │ │ │ ├── Sphere.h │ │ │ ├── Sphere.ini │ │ │ ├── SphereWithMips.h │ │ │ ├── SphereWithMips.ini │ │ │ ├── Teapot_test.h │ │ │ ├── Teapot_test.ini │ │ │ ├── Teapot_test2.h │ │ │ ├── Teapot_test2.ini │ │ │ ├── Teapot_test3.h │ │ │ ├── Teapot_test3.ini │ │ │ ├── Thetraedar.h │ │ │ ├── Thetraedar.ini │ │ │ ├── Tree.h │ │ │ ├── Tree.ini │ │ │ ├── Vase.h │ │ │ ├── Vase.ini │ │ │ └── swinger │ │ │ │ ├── swinger.h │ │ │ │ └── swinger.ini │ │ ├── Weapons │ │ │ ├── Cannon │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Cannon.h │ │ │ │ ├── Cannon.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Light.h │ │ │ │ ├── Light.ini │ │ │ │ ├── NukeBox.h │ │ │ │ ├── NukeBox.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBall.ini │ │ │ ├── Colt │ │ │ │ ├── ColtBullets.h │ │ │ │ ├── ColtBullets.ini │ │ │ │ ├── ColtCock.h │ │ │ │ ├── ColtCock.ini │ │ │ │ ├── ColtItem.h │ │ │ │ ├── ColtItem.ini │ │ │ │ ├── ColtMain.h │ │ │ │ ├── ColtMain.ini │ │ │ │ ├── colt.h │ │ │ │ └── colt.ini │ │ │ ├── DoubleShotgun │ │ │ │ ├── Ammo.h │ │ │ │ ├── Ammo.ini │ │ │ │ ├── DoubleShotgun.h │ │ │ │ ├── DoubleShotgun.ini │ │ │ │ ├── DoubleShotgunItem.h │ │ │ │ ├── DoubleShotgunItem.ini │ │ │ │ ├── Dshotgunbarrels.h │ │ │ │ ├── Dshotgunbarrels.ini │ │ │ │ ├── Dshotgunhandle.h │ │ │ │ ├── Dshotgunhandle.ini │ │ │ │ ├── HandWithAmmo.h │ │ │ │ ├── HandWithAmmo.ini │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ │ ├── Flamer │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ ├── FuelReservoir.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Invisible.h │ │ │ │ │ └── Invisible.ini │ │ │ ├── FlamerNew │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ ├── GhostBuster │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Effect01.h │ │ │ │ ├── Effect01.ini │ │ │ │ ├── EffectFlare.h │ │ │ │ ├── EffectFlare.ini │ │ │ │ ├── EffectFlare01.h │ │ │ │ ├── EffectFlare01.ini │ │ │ │ ├── GhostBuster.h │ │ │ │ ├── GhostBuster.ini │ │ │ │ ├── GhostBusterItem.h │ │ │ │ ├── GhostBusterItem.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Ray.h │ │ │ │ │ └── Ray.ini │ │ │ │ ├── Rotator.h │ │ │ │ └── Rotator.ini │ │ │ ├── GrenadeLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── GrenadeBack.h │ │ │ │ ├── GrenadeBack.ini │ │ │ │ ├── GrenadeLauncher.h │ │ │ │ ├── GrenadeLauncher.ini │ │ │ │ ├── GrenadeLauncherItem.h │ │ │ │ ├── GrenadeLauncherItem.ini │ │ │ │ ├── MovingPipe.h │ │ │ │ └── MovingPipe.ini │ │ │ ├── Knife │ │ │ │ ├── Knife.h │ │ │ │ ├── Knife.ini │ │ │ │ ├── KnifeItem.h │ │ │ │ └── KnifeItem.ini │ │ │ ├── Laser │ │ │ │ ├── Barrel.h │ │ │ │ ├── Barrel.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── LaserItem.h │ │ │ │ ├── LaserItem.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectile.ini │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ └── LaserProjectileGlow01.ini │ │ │ ├── MiniGun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Engine.h │ │ │ │ ├── Engine.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── MiniGunItem.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── minigun.h │ │ │ │ └── minigun.ini │ │ │ ├── Pipebomb │ │ │ │ ├── Bomb.h │ │ │ │ ├── Bomb.ini │ │ │ │ ├── Button.h │ │ │ │ ├── Button.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── HandWithBomb.h │ │ │ │ ├── HandWithBomb.ini │ │ │ │ ├── HandWithStick.h │ │ │ │ ├── HandWithStick.ini │ │ │ │ ├── Shield.h │ │ │ │ ├── Shield.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── StickItem.h │ │ │ │ └── StickItem.ini │ │ │ ├── RocketLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Rocket.h │ │ │ │ │ └── Rocket.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── RocketLauncherItem.h │ │ │ │ ├── RocketLauncherItem.ini │ │ │ │ ├── Rotatingpart.h │ │ │ │ └── Rotatingpart.ini │ │ │ ├── SingleShotgun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── SingleShotGun.h │ │ │ │ ├── SingleShotgun.ini │ │ │ │ ├── SingleShotgunItem.h │ │ │ │ ├── SingleShotgunItem.ini │ │ │ │ ├── Slider.h │ │ │ │ └── Slider.ini │ │ │ ├── Sniper │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Sniper.h │ │ │ │ └── Sniper.ini │ │ │ └── TommyGun │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── TommyGun.h │ │ │ │ ├── TommyGun.ini │ │ │ │ ├── TommyGunItem.h │ │ │ │ └── TommyGunItem.ini │ │ ├── WeaponsHD │ │ │ ├── Cannon │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Cannon.h │ │ │ │ ├── Cannon.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Light.h │ │ │ │ ├── Light.ini │ │ │ │ ├── NukeBox.h │ │ │ │ ├── NukeBox.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBall.ini │ │ │ ├── Colt │ │ │ │ ├── ColtBullets.h │ │ │ │ ├── ColtBullets.ini │ │ │ │ ├── ColtCock.h │ │ │ │ ├── ColtCock.ini │ │ │ │ ├── ColtItem.h │ │ │ │ ├── ColtItem.ini │ │ │ │ ├── ColtMain.h │ │ │ │ ├── ColtMain.ini │ │ │ │ ├── colt.h │ │ │ │ └── colt.ini │ │ │ ├── DoubleShotgun │ │ │ │ ├── Ammo.h │ │ │ │ ├── Ammo.ini │ │ │ │ ├── DoubleShotgun.h │ │ │ │ ├── DoubleShotgun.ini │ │ │ │ ├── DoubleShotgunItem.h │ │ │ │ ├── DoubleShotgunItem.ini │ │ │ │ ├── Dshotgunbarrels.h │ │ │ │ ├── Dshotgunbarrels.ini │ │ │ │ ├── Dshotgunhandle.h │ │ │ │ ├── Dshotgunhandle.ini │ │ │ │ ├── HandWithAmmo.h │ │ │ │ ├── HandWithAmmo.ini │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ │ ├── Flamer │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ ├── FuelReservoir.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Invisible.h │ │ │ │ │ └── Invisible.ini │ │ │ ├── FlamerNew │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ ├── GhostBuster │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Effect01.h │ │ │ │ ├── Effect01.ini │ │ │ │ ├── EffectFlare.h │ │ │ │ ├── EffectFlare.ini │ │ │ │ ├── EffectFlare01.h │ │ │ │ ├── EffectFlare01.ini │ │ │ │ ├── GhostBuster.h │ │ │ │ ├── GhostBuster.ini │ │ │ │ ├── GhostBusterItem.h │ │ │ │ ├── GhostBusterItem.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Ray.h │ │ │ │ │ └── Ray.ini │ │ │ │ ├── Rotator.h │ │ │ │ └── Rotator.ini │ │ │ ├── GrenadeLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── GrenadeBack.h │ │ │ │ ├── GrenadeBack.ini │ │ │ │ ├── GrenadeLauncher.h │ │ │ │ ├── GrenadeLauncher.ini │ │ │ │ ├── GrenadeLauncherItem.h │ │ │ │ ├── GrenadeLauncherItem.ini │ │ │ │ ├── MovingPipe.h │ │ │ │ └── MovingPipe.ini │ │ │ ├── Knife │ │ │ │ ├── Knife.h │ │ │ │ ├── Knife.ini │ │ │ │ ├── KnifeItem.h │ │ │ │ └── KnifeItem.ini │ │ │ ├── Laser │ │ │ │ ├── Barrel.h │ │ │ │ ├── Barrel.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── LaserItem.h │ │ │ │ ├── LaserItem.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectile.ini │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ └── LaserProjectileGlow01.ini │ │ │ ├── MiniGun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Engine.h │ │ │ │ ├── Engine.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── MiniGunItem.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── minigun.h │ │ │ │ └── minigun.ini │ │ │ ├── Pipebomb │ │ │ │ ├── Bomb.h │ │ │ │ ├── Bomb.ini │ │ │ │ ├── Button.h │ │ │ │ ├── Button.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── HandWithBomb.h │ │ │ │ ├── HandWithBomb.ini │ │ │ │ ├── HandWithStick.h │ │ │ │ ├── HandWithStick.ini │ │ │ │ ├── Shield.h │ │ │ │ ├── Shield.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── StickItem.h │ │ │ │ └── StickItem.ini │ │ │ ├── RocketLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Rocket.h │ │ │ │ │ └── Rocket.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── RocketLauncherItem.h │ │ │ │ ├── RocketLauncherItem.ini │ │ │ │ ├── Rotatingpart.h │ │ │ │ └── Rotatingpart.ini │ │ │ ├── SingleShotgun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── SingleShotGun.h │ │ │ │ ├── SingleShotgun.ini │ │ │ │ ├── SingleShotgunItem.h │ │ │ │ ├── SingleShotgunItem.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ └── Switch.h │ │ │ ├── Sniper │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Sniper.h │ │ │ │ └── Sniper.ini │ │ │ └── TommyGun │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── TommyGun.h │ │ │ │ ├── TommyGun.ini │ │ │ │ ├── TommyGunItem.h │ │ │ │ └── TommyGunItem.ini │ │ ├── Weapons_old │ │ │ ├── Cannon │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Cannon.h │ │ │ │ ├── Cannon.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Fuse.h │ │ │ │ ├── Fuse.ini │ │ │ │ ├── HandWithTorch.h │ │ │ │ ├── HandWithTorch.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBall.ini │ │ │ │ ├── Torch.h │ │ │ │ ├── Torch.ini │ │ │ │ ├── TorchUp.h │ │ │ │ └── TorchUp.ini │ │ │ ├── Colt │ │ │ │ ├── ColtBullets.h │ │ │ │ ├── ColtBullets.ini │ │ │ │ ├── ColtCock.h │ │ │ │ ├── ColtCock.ini │ │ │ │ ├── ColtItem.h │ │ │ │ ├── ColtItem.ini │ │ │ │ ├── ColtMain.h │ │ │ │ ├── ColtMain.ini │ │ │ │ ├── colt.h │ │ │ │ └── colt.ini │ │ │ ├── Crosshair │ │ │ │ ├── Crosshair.h │ │ │ │ └── Crosshair.ini │ │ │ ├── DoubleShotgun │ │ │ │ ├── Ammo.h │ │ │ │ ├── Ammo.ini │ │ │ │ ├── DoubleShotgun.h │ │ │ │ ├── DoubleShotgun.ini │ │ │ │ ├── DoubleShotgunItem.h │ │ │ │ ├── DoubleShotgunItem.ini │ │ │ │ ├── Dshotgunbarrels.h │ │ │ │ ├── Dshotgunbarrels.ini │ │ │ │ ├── Dshotgunhandle.h │ │ │ │ ├── Dshotgunhandle.ini │ │ │ │ ├── HandWithAmmo.h │ │ │ │ ├── HandWithAmmo.ini │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ │ ├── DoubleShotgunOld │ │ │ │ ├── Ammo.h │ │ │ │ ├── Ammo.ini │ │ │ │ ├── DoubleShotgun.h │ │ │ │ ├── DoubleShotgun.ini │ │ │ │ ├── DoubleShotgunItem.h │ │ │ │ ├── DoubleShotgunItem.ini │ │ │ │ ├── Dshotgunbarrels.h │ │ │ │ ├── Dshotgunbarrels.ini │ │ │ │ ├── Dshotgunhandle.h │ │ │ │ ├── Dshotgunhandle.ini │ │ │ │ ├── HandWithAmmo.h │ │ │ │ ├── HandWithAmmo.ini │ │ │ │ ├── HandWithAmmo │ │ │ │ │ ├── HandWithAmmo.h │ │ │ │ │ └── HandWithAmmo.ini │ │ │ │ ├── Switch.h │ │ │ │ ├── Switch.ini │ │ │ │ └── t │ │ │ │ │ ├── DoubleShotgun.h │ │ │ │ │ └── DoubleShotgun.ini │ │ │ ├── Flamer │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ ├── FuelReservoir.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Invisible.h │ │ │ │ │ └── Invisible.ini │ │ │ ├── GhostBuster │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Effect01.h │ │ │ │ ├── Effect01.ini │ │ │ │ ├── EffectFlare.h │ │ │ │ ├── EffectFlare.ini │ │ │ │ ├── EffectFlare01.h │ │ │ │ ├── EffectFlare01.ini │ │ │ │ ├── GhostBuster.h │ │ │ │ ├── GhostBuster.ini │ │ │ │ ├── GhostBusterItem.h │ │ │ │ ├── GhostBusterItem.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Ray.h │ │ │ │ │ └── Ray.ini │ │ │ │ ├── Rotator.h │ │ │ │ └── Rotator.ini │ │ │ ├── GrenadeLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── GrenadeBack.h │ │ │ │ ├── GrenadeBack.ini │ │ │ │ ├── GrenadeLauncher.h │ │ │ │ ├── GrenadeLauncher.ini │ │ │ │ ├── GrenadeLauncherItem.h │ │ │ │ ├── GrenadeLauncherItem.ini │ │ │ │ ├── MovingPipe.h │ │ │ │ └── MovingPipe.ini │ │ │ ├── Hand │ │ │ │ ├── Hands.h │ │ │ │ └── Hands.ini │ │ │ ├── Knife │ │ │ │ ├── Knife.h │ │ │ │ ├── Knife.ini │ │ │ │ ├── KnifeItem.h │ │ │ │ └── KnifeItem.ini │ │ │ ├── Laser │ │ │ │ ├── Barrel.h │ │ │ │ ├── Barrel.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── LaserItem.h │ │ │ │ ├── LaserItem.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectile.ini │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ └── LaserProjectileGlow01.ini │ │ │ ├── Minigun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Engine.h │ │ │ │ ├── Engine.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── MiniGunItem.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── minigun.h │ │ │ │ └── minigun.ini │ │ │ ├── PipeBomb │ │ │ │ ├── Bomb.h │ │ │ │ ├── Bomb.ini │ │ │ │ ├── Button.h │ │ │ │ ├── Button.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── HandWithBomb.h │ │ │ │ ├── HandWithBomb.ini │ │ │ │ ├── HandWithStick.h │ │ │ │ ├── HandWithStick.ini │ │ │ │ ├── Shield.h │ │ │ │ ├── Shield.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── StickItem.h │ │ │ │ └── StickItem.ini │ │ │ ├── RocketLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Rocket.h │ │ │ │ │ └── Rocket.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── Rotatingpart.h │ │ │ │ └── Rotatingpart.ini │ │ │ ├── SingleShotgun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── SingleShotGun.h │ │ │ │ ├── SingleShotgun.ini │ │ │ │ ├── SingleShotgunItem.h │ │ │ │ ├── SingleShotgunItem.ini │ │ │ │ ├── Slider.h │ │ │ │ └── Slider.ini │ │ │ └── TommyGun │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── TommyGun.h │ │ │ │ ├── TommyGun.ini │ │ │ │ ├── TommyGunItem.h │ │ │ │ └── TommyGunItem.ini │ │ ├── Windows │ │ │ └── Vitraj01 │ │ │ │ ├── Vitraj.h │ │ │ │ └── Vitraj.ini │ │ └── headers │ │ │ ├── Computer │ │ │ └── Floor.h │ │ │ ├── Editor │ │ │ ├── AmbientLight.h │ │ │ ├── AngleVector.h │ │ │ ├── AnimationChanger.h │ │ │ ├── Axis.h │ │ │ ├── BoundingBox.h │ │ │ ├── Camera.h │ │ │ ├── CameraMarker.h │ │ │ ├── CollisionBox.h │ │ │ ├── Copier.h │ │ │ ├── Damager.h │ │ │ ├── DoorController.h │ │ │ ├── EmptyBrush.h │ │ │ ├── EnemyMarker.h │ │ │ ├── EnemySpawner.h │ │ │ ├── EntityMarker.h │ │ │ ├── EnvironmentMarker.h │ │ │ ├── Floor.h │ │ │ ├── Fog.h │ │ │ ├── GradientMarker.h │ │ │ ├── GravityMarker.h │ │ │ ├── GravityRouter.h │ │ │ ├── Guilotine.h │ │ │ ├── Haze.h │ │ │ ├── Lamp.h │ │ │ ├── LightSource.h │ │ │ ├── LightStyle.h │ │ │ ├── Lightning.h │ │ │ ├── MessageHolder.h │ │ │ ├── ModelDestruction.h │ │ │ ├── MovingBrushMarker.h │ │ │ ├── MusicChanger.h │ │ │ ├── MusicHolder.h │ │ │ ├── NavigationMarker.h │ │ │ ├── PlayerActionMarker.h │ │ │ ├── PlayerStart.h │ │ │ ├── PointLight.h │ │ │ ├── PortalMarker.h │ │ │ ├── RangeSphere.h │ │ │ ├── ShipMarker.h │ │ │ ├── SoundHolder.h │ │ │ ├── SoundHolder02.h │ │ │ ├── SpotLight.h │ │ │ ├── StormController.h │ │ │ ├── Teapot.h │ │ │ ├── Teleport.h │ │ │ ├── ThunderController.h │ │ │ ├── Trigger.h │ │ │ ├── Vector.h │ │ │ ├── WarpEntrance.h │ │ │ ├── WarpExit.h │ │ │ ├── WatchPlayers.h │ │ │ ├── WorldLink.h │ │ │ └── WorldSettingsController.h │ │ │ ├── Effects │ │ │ ├── Blood01 │ │ │ │ └── objects │ │ │ │ │ └── Blood01.h │ │ │ ├── BloodCloud │ │ │ │ └── BloodCloud.h │ │ │ ├── BloodExplosion01 │ │ │ │ └── BloodExplosion.h │ │ │ ├── BloodOnTheWall01 │ │ │ │ └── Blood.h │ │ │ ├── BulletOnTheWall │ │ │ │ └── Bullet.h │ │ │ ├── BulletParticles │ │ │ │ └── BulletParticles.h │ │ │ ├── BulletTrail │ │ │ │ └── BulletTrail.h │ │ │ ├── BurnedStainOnTheWall │ │ │ │ └── BurnedStainOnTheWall.h │ │ │ ├── Debris │ │ │ │ ├── Body01 │ │ │ │ │ └── Body.h │ │ │ │ ├── Body02 │ │ │ │ │ └── Body.h │ │ │ │ ├── Body03 │ │ │ │ │ └── Body.h │ │ │ │ ├── Body04 │ │ │ │ │ └── Body.h │ │ │ │ ├── Body05 │ │ │ │ │ └── Body.h │ │ │ │ ├── Brain01 │ │ │ │ │ └── Brain.h │ │ │ │ ├── Flesh │ │ │ │ │ └── Flesh.h │ │ │ │ ├── Lava01 │ │ │ │ │ ├── Lava.h │ │ │ │ │ └── LavaFlare.h │ │ │ │ ├── Skull01 │ │ │ │ │ └── Skull.h │ │ │ │ ├── Skull01_org │ │ │ │ │ └── Skull.h │ │ │ │ ├── Stone │ │ │ │ │ └── Stone.h │ │ │ │ └── Wood01 │ │ │ │ │ └── Wood.h │ │ │ ├── Explosion01 │ │ │ │ └── Explosion01.h │ │ │ ├── Explosion02 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion03 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion04 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion05 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion06 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion07 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion08 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion09 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion10 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion11 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion12 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion13 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion14 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion15 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion16 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion17 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion18 │ │ │ │ └── Explosion.h │ │ │ ├── ExplosionGrenade │ │ │ │ ├── ExplosionGrenade.h │ │ │ │ └── ExplosionGrenade3D.h │ │ │ ├── ExplosionParticles │ │ │ │ ├── Particles.h │ │ │ │ └── Particles3D.h │ │ │ ├── ExplosionRocket │ │ │ │ ├── ExplosionRocket.h │ │ │ │ └── ExplosionRocket3D.h │ │ │ ├── Fire01 │ │ │ │ └── Fire.h │ │ │ ├── Fire02 │ │ │ │ └── Fire.h │ │ │ ├── Fire03 │ │ │ │ └── Fire.h │ │ │ ├── Flare01 │ │ │ │ └── Flare.h │ │ │ ├── Flare02 │ │ │ │ └── Flaire.h │ │ │ ├── Flares1m │ │ │ │ └── Flaire.h │ │ │ ├── Holder2x4 │ │ │ │ ├── Holder.h │ │ │ │ ├── HolderAngle.h │ │ │ │ └── HolderOneSide.h │ │ │ ├── LavaRock01 │ │ │ │ ├── LavaRock.h │ │ │ │ ├── LavaRock02.h │ │ │ │ └── LavaRock03.h │ │ │ ├── LightBeam01 │ │ │ │ └── LightBeam.h │ │ │ ├── Rail │ │ │ │ ├── rail.h │ │ │ │ ├── railend.h │ │ │ │ └── railstart.h │ │ │ ├── RotatingFlare01 │ │ │ │ └── RotatingFlare.h │ │ │ ├── ShockWave │ │ │ │ ├── Ring.h │ │ │ │ └── Ring2.h │ │ │ ├── ShockWave01 │ │ │ │ └── ShockWave.h │ │ │ ├── ShockWaveGreen │ │ │ │ └── ShockWaveGreen.h │ │ │ ├── Smoke01 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke02 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke03 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke04 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke05 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke06 │ │ │ │ └── Smoke.h │ │ │ ├── SmokeLine │ │ │ │ └── SmokeLine.h │ │ │ ├── SmokeLine01 │ │ │ │ └── SmokeLine.h │ │ │ ├── SmokeLine02 │ │ │ │ └── SmokeLine.h │ │ │ ├── StainOnTheWall │ │ │ │ └── Stain.h │ │ │ ├── Teleport01 │ │ │ │ └── Teleport.h │ │ │ ├── Water01 │ │ │ │ └── Water.h │ │ │ ├── WaterFall01 │ │ │ │ └── WaterFall.h │ │ │ ├── WaterFoam01 │ │ │ │ └── Puff.h │ │ │ ├── WaterFoam02 │ │ │ │ └── Foam.h │ │ │ ├── WaterFoam03 │ │ │ │ └── Foam.h │ │ │ └── Weapons │ │ │ │ ├── Flare01 │ │ │ │ └── Flare.h │ │ │ │ └── Flare02 │ │ │ │ └── Flare.h │ │ │ ├── Enemies │ │ │ ├── Beast │ │ │ │ ├── Beast.h │ │ │ │ ├── Projectile │ │ │ │ │ └── Projectile.h │ │ │ │ ├── ProjectileOld │ │ │ │ │ └── Projectile.h │ │ │ │ ├── ProjectileOld2 │ │ │ │ │ └── Projectile.h │ │ │ │ └── ProjectileOrg │ │ │ │ │ └── Projectile.h │ │ │ ├── Boneman │ │ │ │ ├── Boneman.h │ │ │ │ ├── Debris │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Hand.h │ │ │ │ │ └── Legs.h │ │ │ │ └── Projectile │ │ │ │ │ └── Projectile.h │ │ │ ├── Catman │ │ │ │ ├── CatMan.h │ │ │ │ ├── Fire │ │ │ │ │ └── CatmanFire.h │ │ │ │ ├── FireOld │ │ │ │ │ └── CatmanFire.h │ │ │ │ └── Projectile │ │ │ │ │ └── Projectile.h │ │ │ ├── ChainSawFreak │ │ │ │ ├── Freak.h │ │ │ │ └── Saw.h │ │ │ ├── Cyborg │ │ │ │ ├── AssHole.h │ │ │ │ ├── Bike.h │ │ │ │ ├── Cyborg.h │ │ │ │ ├── CyborgONEPART.h │ │ │ │ ├── Foot.h │ │ │ │ ├── Head.h │ │ │ │ ├── LeftLowerArm.h │ │ │ │ ├── LeftLowerLeg.h │ │ │ │ ├── LeftUpperArm.h │ │ │ │ ├── LeftUpperLeg.h │ │ │ │ ├── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ └── Projectile.h │ │ │ │ ├── RightLowerArm.h │ │ │ │ ├── RightLowerLeg.h │ │ │ │ ├── RightUpperArm.h │ │ │ │ ├── RightUpperLeg.h │ │ │ │ ├── Termi+rifle.h │ │ │ │ └── Torso.h │ │ │ ├── Devil │ │ │ │ ├── Flare.h │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── Minigun.h │ │ │ │ ├── Stick.h │ │ │ │ ├── devil.h │ │ │ │ ├── devil2.h │ │ │ │ └── shield.h │ │ │ ├── DragonMan │ │ │ │ ├── Debris │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Head.h │ │ │ │ │ ├── Leg.h │ │ │ │ │ ├── Tail.h │ │ │ │ │ └── Wing.h │ │ │ │ ├── DragonMan.h │ │ │ │ └── Projectile │ │ │ │ │ └── Projectile.h │ │ │ ├── ElementalAir │ │ │ │ └── Elemental.h │ │ │ ├── ElementalLava │ │ │ │ ├── BodyFlare.h │ │ │ │ ├── ElementalLava.h │ │ │ │ ├── HandFlare.h │ │ │ │ └── Projectile │ │ │ │ │ ├── LavaBomb.h │ │ │ │ │ ├── LavaStone.h │ │ │ │ │ └── LavaStoneFlare.h │ │ │ ├── Elementals │ │ │ │ ├── AirMan.h │ │ │ │ ├── IceMan.h │ │ │ │ ├── Icepick.h │ │ │ │ ├── LavaMan.h │ │ │ │ ├── LavaManFX │ │ │ │ │ ├── BodyFlare.h │ │ │ │ │ └── HandFlare.h │ │ │ │ ├── Maul.h │ │ │ │ ├── Projectile │ │ │ │ │ ├── Fireball.h │ │ │ │ │ ├── IcePyramid.h │ │ │ │ │ ├── IcePyramidFlare.h │ │ │ │ │ ├── LavaBomb.h │ │ │ │ │ ├── LavaStone.h │ │ │ │ │ ├── LavaStoneFlare.h │ │ │ │ │ ├── Stone.h │ │ │ │ │ └── WaterDrop.h │ │ │ │ ├── StoneManFX │ │ │ │ │ └── BodyFlare.h │ │ │ │ ├── Stoneman.h │ │ │ │ ├── Twister.h │ │ │ │ ├── WaterMan.h │ │ │ │ └── WaterManFX │ │ │ │ │ └── BodyFlare.h │ │ │ ├── Eyeman │ │ │ │ └── Eyeman.h │ │ │ ├── EyemanOld │ │ │ │ ├── Projectile │ │ │ │ │ └── Acid.h │ │ │ │ └── eyeman.h │ │ │ ├── Fish │ │ │ │ ├── Fish.h │ │ │ │ └── Glow.h │ │ │ ├── Fishman │ │ │ │ ├── Projectile │ │ │ │ │ └── Projectile.h │ │ │ │ └── fishman.h │ │ │ ├── Gizmo │ │ │ │ └── Gizmo.h │ │ │ ├── HeadManOld │ │ │ │ ├── Bag.h │ │ │ │ ├── ChainSaw.h │ │ │ │ ├── Head.h │ │ │ │ ├── HeadMan.h │ │ │ │ ├── Headonstick.h │ │ │ │ ├── Projectile │ │ │ │ │ ├── Blade.h │ │ │ │ │ ├── Bomb.h │ │ │ │ │ ├── FireCracker.h │ │ │ │ │ └── FireTrail.h │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── Saw.h │ │ │ │ └── Stick.h │ │ │ ├── Headman │ │ │ │ ├── ChainSaw.h │ │ │ │ ├── FireCrackerHead.h │ │ │ │ ├── Head.h │ │ │ │ ├── Projectile │ │ │ │ │ ├── Blade.h │ │ │ │ │ ├── Bomb.h │ │ │ │ │ ├── FireCracker.h │ │ │ │ │ └── FireTrail.h │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── Saw.h │ │ │ │ ├── Stick.h │ │ │ │ ├── headman.h │ │ │ │ └── headmantest.h │ │ │ ├── HuanMan │ │ │ │ ├── Huanman.h │ │ │ │ └── Projectile │ │ │ │ │ ├── Flare.h │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── tmp │ │ │ │ │ └── Projectile.h │ │ │ ├── MAMUTMAN │ │ │ │ └── Mamutman.h │ │ │ ├── MANTAMAN │ │ │ │ ├── Projectile │ │ │ │ │ └── Projectile.h │ │ │ │ └── mantaman.h │ │ │ ├── Mamut │ │ │ │ ├── MAMUT.H │ │ │ │ ├── OBJECTS │ │ │ │ │ └── mamut.h │ │ │ │ └── Projectile │ │ │ │ │ └── MamutProjectile.h │ │ │ ├── Robots │ │ │ │ ├── DrivingWheel │ │ │ │ │ └── Robot.h │ │ │ │ ├── FloatBall │ │ │ │ │ └── Robot.h │ │ │ │ ├── FlyingFighter │ │ │ │ │ └── Ship.h │ │ │ │ └── SentryBall │ │ │ │ │ ├── Ball.h │ │ │ │ │ ├── Effect.h │ │ │ │ │ └── SentryBall.h │ │ │ ├── SCORPMAN │ │ │ │ ├── Flare.h │ │ │ │ ├── Gun.h │ │ │ │ └── scorpman.h │ │ │ ├── Walker │ │ │ │ ├── Laser.h │ │ │ │ ├── RocketLauncher.h │ │ │ │ └── Walker.h │ │ │ ├── WereBull │ │ │ │ └── WereBull.h │ │ │ ├── WereBullOld │ │ │ │ └── WereBull.h │ │ │ └── Woman │ │ │ │ ├── Projectile │ │ │ │ └── Projectile.h │ │ │ │ ├── Woman.h │ │ │ │ └── WomanForArtwork.h │ │ │ ├── IHVTest │ │ │ ├── CurvedSurfaces.h │ │ │ ├── GlassCurvedSurfaces.h │ │ │ └── Lightning.h │ │ │ ├── Items │ │ │ ├── Ammo │ │ │ │ ├── Bullets │ │ │ │ │ └── Bullets.h │ │ │ │ ├── Cannonball │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBallQuad.h │ │ │ │ ├── Electricity │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect2.h │ │ │ │ │ └── Electricity.h │ │ │ │ ├── Grenades │ │ │ │ │ └── Grenades.h │ │ │ │ ├── Napalm │ │ │ │ │ └── Napalm.h │ │ │ │ ├── Rockets │ │ │ │ │ └── Rockets.h │ │ │ │ ├── Shells │ │ │ │ │ └── Shells.h │ │ │ │ └── _Old │ │ │ │ │ ├── Bullets │ │ │ │ │ └── Bullets.h │ │ │ │ │ ├── Cannonball │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBallQuad.h │ │ │ │ │ ├── Electricity │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect2.h │ │ │ │ │ └── Electricity.h │ │ │ │ │ ├── Grenades │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenades.h │ │ │ │ │ ├── Rockets │ │ │ │ │ ├── Rocket01.h │ │ │ │ │ └── Rockets.h │ │ │ │ │ └── Shells │ │ │ │ │ └── Shells.h │ │ │ ├── Armor │ │ │ │ ├── Armor_1.h │ │ │ │ ├── Armor_100.h │ │ │ │ ├── Armor_200.h │ │ │ │ ├── Armor_25.h │ │ │ │ └── Armor_50.h │ │ │ ├── Flares │ │ │ │ └── Flare.h │ │ │ ├── Health │ │ │ │ ├── Large │ │ │ │ │ └── Large.h │ │ │ │ ├── Medium │ │ │ │ │ └── Medium.h │ │ │ │ ├── Pill │ │ │ │ │ └── Pill.h │ │ │ │ ├── Small │ │ │ │ │ └── Small.h │ │ │ │ ├── Super │ │ │ │ │ └── Super.h │ │ │ │ └── SuperOrg │ │ │ │ │ └── Super.h │ │ │ ├── ItemHolder │ │ │ │ └── ItemHolder.h │ │ │ ├── Keys │ │ │ │ ├── AnkhGold │ │ │ │ │ └── Ankh.h │ │ │ │ ├── AnkhStone │ │ │ │ │ └── Ankh.h │ │ │ │ └── AnkhWood │ │ │ │ │ └── Ankh.h │ │ │ └── PowerUps │ │ │ │ ├── BackPack │ │ │ │ └── BackPack.h │ │ │ │ ├── SeriousPack │ │ │ │ └── SeriousPack.h │ │ │ │ └── _Old │ │ │ │ └── SeriousPack │ │ │ │ └── SeriousPack.h │ │ │ ├── Player │ │ │ ├── SeriousSam │ │ │ │ ├── Body.h │ │ │ │ ├── Glasses.h │ │ │ │ ├── Head.h │ │ │ │ └── Player.h │ │ │ └── SeriousSamOld │ │ │ │ ├── Body.h │ │ │ │ ├── Head.h │ │ │ │ └── Player.h │ │ │ ├── Switches │ │ │ └── Switch01 │ │ │ │ └── Switch.h │ │ │ └── Weapons │ │ │ ├── Cannon │ │ │ ├── Body.h │ │ │ ├── Cannon.h │ │ │ ├── Flame.h │ │ │ ├── Light.h │ │ │ ├── NukeBox.h │ │ │ └── Projectile │ │ │ │ └── CannonBall.h │ │ │ ├── Colt │ │ │ ├── ColtBullets.h │ │ │ ├── ColtCock.h │ │ │ ├── ColtItem.h │ │ │ ├── ColtMain.h │ │ │ └── colt.h │ │ │ ├── DoubleShotgun │ │ │ ├── Ammo.h │ │ │ ├── DoubleShotgun.h │ │ │ ├── DoubleShotgunItem.h │ │ │ ├── Dshotgunbarrels.h │ │ │ ├── Dshotgunhandle.h │ │ │ ├── HandWithAmmo.h │ │ │ └── Switch.h │ │ │ ├── Flamer │ │ │ ├── Body.h │ │ │ ├── Flame.h │ │ │ ├── Flamer.h │ │ │ ├── FlamerItem.h │ │ │ ├── FuelReservoir.h │ │ │ └── Projectile │ │ │ │ └── Invisible.h │ │ │ ├── FlamerNew │ │ │ ├── Body.h │ │ │ └── FuelReservoir.h │ │ │ ├── GhostBuster │ │ │ ├── Body.h │ │ │ ├── Effect01.h │ │ │ ├── EffectFlare.h │ │ │ ├── EffectFlare01.h │ │ │ ├── GhostBuster.h │ │ │ ├── GhostBusterItem.h │ │ │ ├── Projectile │ │ │ │ └── Ray.h │ │ │ └── Rotator.h │ │ │ ├── GrenadeLauncher │ │ │ ├── Body.h │ │ │ ├── Grenade │ │ │ │ └── Grenade.h │ │ │ ├── GrenadeBack.h │ │ │ ├── GrenadeLauncher.h │ │ │ ├── GrenadeLauncherItem.h │ │ │ └── MovingPipe.h │ │ │ ├── Knife │ │ │ ├── Knife.h │ │ │ └── KnifeItem.h │ │ │ ├── Laser │ │ │ ├── Barrel.h │ │ │ ├── Body.h │ │ │ ├── Laser.h │ │ │ ├── LaserItem.h │ │ │ └── Projectile │ │ │ │ ├── LaserProjectile.h │ │ │ │ └── LaserProjectileGlow01.h │ │ │ ├── MiniGun │ │ │ ├── Barrels.h │ │ │ ├── Body.h │ │ │ ├── Engine.h │ │ │ ├── Handle.h │ │ │ ├── MiniGunItem.h │ │ │ ├── Shell │ │ │ │ └── Shell.h │ │ │ └── minigun.h │ │ │ ├── PipeBomb │ │ │ ├── Bomb.h │ │ │ ├── Button.h │ │ │ ├── Grenade │ │ │ │ └── Grenade.h │ │ │ ├── HandWithBomb.h │ │ │ ├── HandWithStick.h │ │ │ ├── Shield.h │ │ │ ├── Stick.h │ │ │ └── StickItem.h │ │ │ ├── RocketLauncher │ │ │ ├── Body.h │ │ │ ├── Projectile │ │ │ │ └── Rocket.h │ │ │ ├── RocketLauncher.h │ │ │ ├── RocketLauncherItem.h │ │ │ └── Rotatingpart.h │ │ │ ├── SingleShotgun │ │ │ ├── Barrels.h │ │ │ ├── Handle.h │ │ │ ├── Shell │ │ │ │ └── Shell.h │ │ │ ├── SingleShotGun.h │ │ │ ├── SingleShotgunItem.h │ │ │ └── Slider.h │ │ │ ├── Sniper │ │ │ ├── Body.h │ │ │ └── Sniper.h │ │ │ └── TommyGun │ │ │ ├── Body.h │ │ │ ├── Slider.h │ │ │ ├── TommyGun.h │ │ │ └── TommyGunItem.h │ ├── ModelsMP │ │ ├── Babylon │ │ │ ├── BabylonColumn │ │ │ │ ├── Column.h │ │ │ │ └── Column.ini │ │ │ ├── BabylonTower │ │ │ │ ├── CornerTower.h │ │ │ │ ├── CornerTower.ini │ │ │ │ ├── Tower.h │ │ │ │ └── Tower.ini │ │ │ ├── BabylonTowerIvy │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── Column01 │ │ │ │ ├── Column.h │ │ │ │ └── Column.ini │ │ │ ├── Dome01 │ │ │ │ ├── Dome.h │ │ │ │ └── Dome.ini │ │ │ ├── DoorPortal │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── DoorPortal02 │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── Elephant │ │ │ │ ├── Elephant.h │ │ │ │ └── Elephant.ini │ │ │ ├── FireHolder01 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder02 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder03 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder04 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder05 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder06 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder07 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder09 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder10 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── Horse │ │ │ │ ├── Horse.h │ │ │ │ └── Horse.ini │ │ │ ├── LionStatue │ │ │ │ ├── LionStatue-test.h │ │ │ │ ├── LionStatue-test.ini │ │ │ │ ├── LionStatue.h │ │ │ │ └── LionStatue.ini │ │ │ ├── ManStatue │ │ │ │ ├── Statue.h │ │ │ │ └── Statue.ini │ │ │ ├── Persepolis │ │ │ │ ├── Egg.h │ │ │ │ └── Egg.ini │ │ │ ├── PersepolisTemple │ │ │ │ ├── TempleColumn.h │ │ │ │ └── TempleColumn.ini │ │ │ ├── Portal02 │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── PotPlant01 │ │ │ │ ├── Plant.h │ │ │ │ ├── Plant.ini │ │ │ │ ├── Pot.h │ │ │ │ └── Pot.ini │ │ │ ├── Tower01 │ │ │ │ ├── Tower.h │ │ │ │ ├── Tower.ini │ │ │ │ ├── TowerQuadric.h │ │ │ │ └── TowerQuadric.ini │ │ │ ├── Vase01 │ │ │ │ ├── Vase.h │ │ │ │ └── Vase.ini │ │ │ ├── Vase02 │ │ │ │ ├── Vase.h │ │ │ │ └── Vase.ini │ │ │ └── WallShooter │ │ │ │ ├── Shooter.h │ │ │ │ └── Shooter.ini │ │ ├── Computer │ │ │ ├── Floor.h │ │ │ └── Floor.ini │ │ ├── CutSequences │ │ │ ├── Book │ │ │ │ ├── Book.h │ │ │ │ ├── Book.ini │ │ │ │ ├── CoverPages.h │ │ │ │ └── CoverPages.ini │ │ │ ├── Church │ │ │ │ ├── Arch.h │ │ │ │ ├── Arch.ini │ │ │ │ ├── Bench.h │ │ │ │ ├── Bench.ini │ │ │ │ ├── Column.h │ │ │ │ ├── Column.ini │ │ │ │ ├── ConfessionBox.h │ │ │ │ ├── ConfessionBox.ini │ │ │ │ ├── Vitrage_Big.h │ │ │ │ ├── Vitrage_Big.ini │ │ │ │ ├── Vitrage_Small.h │ │ │ │ └── Vitrage_Small.ini │ │ │ ├── ChurchRoof │ │ │ │ ├── CurchRoof.h │ │ │ │ └── CurchRoof.ini │ │ │ ├── CrateBus │ │ │ │ ├── CrateBus.h │ │ │ │ ├── CrateBus.ini │ │ │ │ ├── CrateBus_Crashed.h │ │ │ │ └── CrateBus_Crashed.ini │ │ │ ├── Curtain │ │ │ │ ├── Curtain.h │ │ │ │ └── Curtain.ini │ │ │ ├── DiscoBall │ │ │ │ ├── DiscoBall.h │ │ │ │ ├── DiscoBall.ini │ │ │ │ ├── Microphone.h │ │ │ │ └── Microphone.ini │ │ │ ├── EgyptSet │ │ │ │ ├── Ball.h │ │ │ │ ├── Ball.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── CameraTracks.h │ │ │ │ ├── CameraTracks.ini │ │ │ │ ├── Chair.h │ │ │ │ ├── Chair.ini │ │ │ │ ├── Devil.h │ │ │ │ ├── Devil.ini │ │ │ │ ├── Devil2.h │ │ │ │ ├── Devil2.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── Toys.h │ │ │ │ └── Toys.ini │ │ │ ├── Intro │ │ │ │ ├── log.h │ │ │ │ └── log.ini │ │ │ ├── Museum │ │ │ │ ├── Container.h │ │ │ │ ├── Container.ini │ │ │ │ ├── Question.h │ │ │ │ ├── Question.ini │ │ │ │ ├── Ughzy.h │ │ │ │ └── Ughzy.ini │ │ │ ├── PokerTable │ │ │ │ ├── Table.h │ │ │ │ └── Table.ini │ │ │ ├── PumpkinField │ │ │ │ ├── Head.h │ │ │ │ └── Head.ini │ │ │ ├── Reflector │ │ │ │ ├── Reflector.h │ │ │ │ └── Reflector.ini │ │ │ ├── Rocket │ │ │ │ ├── Rocket.h │ │ │ │ └── Rocket.ini │ │ │ ├── Santa │ │ │ │ ├── Bag.h │ │ │ │ ├── Bag.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SpaceShip │ │ │ │ ├── BeamMachine.h │ │ │ │ ├── BeamMachine.ini │ │ │ │ ├── BeamMachineRim.h │ │ │ │ ├── BeamMachineRim.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── BottomFlare.h │ │ │ │ ├── BottomFlare.ini │ │ │ │ ├── Door.h │ │ │ │ ├── Door.ini │ │ │ │ ├── FillIn.h │ │ │ │ ├── FillIn.ini │ │ │ │ ├── LightBeam.h │ │ │ │ ├── LightBeam.ini │ │ │ │ ├── PowerRing.h │ │ │ │ ├── PowerRing.ini │ │ │ │ ├── SpaceShip.h │ │ │ │ └── SpaceShip.ini │ │ │ ├── TelephoneBooth │ │ │ │ ├── TelephoneBooth.h │ │ │ │ └── TelephoneBooth.ini │ │ │ ├── ToiletTime │ │ │ │ ├── Bullet.h │ │ │ │ ├── Bullet.ini │ │ │ │ ├── Toilet.h │ │ │ │ ├── Toilet.ini │ │ │ │ ├── ToiletBooth.h │ │ │ │ └── ToiletBooth.ini │ │ │ ├── TriggerAnimated │ │ │ │ ├── TriggerAnimated.h │ │ │ │ └── TriggerAnimated.ini │ │ │ └── Wood │ │ │ │ ├── UnderConstruction.h │ │ │ │ ├── UnderConstruction.ini │ │ │ │ ├── Wood.h │ │ │ │ └── Wood.ini │ │ ├── DeathMatch │ │ │ ├── Bonner │ │ │ │ ├── Bonner.h │ │ │ │ └── Bonner.ini │ │ │ └── Rope │ │ │ │ ├── Rope.h │ │ │ │ └── Rope.ini │ │ ├── Editor │ │ │ ├── Damager.h │ │ │ ├── Damager.ini │ │ │ ├── Debug_EntityStack.h │ │ │ ├── Debug_EntityStack.ini │ │ │ ├── EffectMarker.h │ │ │ ├── EffectMarker.ini │ │ │ ├── EnvironmentParticlesHolder.h │ │ │ ├── EnvironmentParticlesHolder.ini │ │ │ ├── TacticsChanger.h │ │ │ ├── TacticsChanger.ini │ │ │ ├── TacticsHolder.h │ │ │ ├── TacticsHolder.ini │ │ │ ├── TacticsManager.h │ │ │ ├── TacticsManager.ini │ │ │ ├── TimeControler.h │ │ │ └── TimeControler.ini │ │ ├── Effects │ │ │ ├── Debris │ │ │ │ └── Tree │ │ │ │ │ ├── TREE.h │ │ │ │ │ └── TREE.ini │ │ │ ├── Fire03 │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── GreenFire │ │ │ │ ├── Fire.h │ │ │ │ ├── Fire.ini │ │ │ │ ├── FireFar.h │ │ │ │ └── FireFar.ini │ │ │ ├── Laser │ │ │ │ ├── Border.h │ │ │ │ ├── Border.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── Laser_Red.h │ │ │ │ └── Laser_Red.ini │ │ │ ├── LightBeam04 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ │ └── LightBeam05 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ ├── Enemies │ │ │ ├── AirElemental │ │ │ │ ├── AirElemental.h │ │ │ │ ├── AirElemental.ini │ │ │ │ ├── Elemental.h │ │ │ │ ├── Elemental.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── ShockWave.h │ │ │ │ ├── ShockWave.ini │ │ │ │ ├── ShockWaveBase.h │ │ │ │ ├── ShockWaveBase.ini │ │ │ │ ├── Twister.h │ │ │ │ └── Twister.ini │ │ │ ├── CannonRotating │ │ │ │ ├── Debris │ │ │ │ │ ├── Cannon.h │ │ │ │ │ ├── Cannon.ini │ │ │ │ │ ├── RotatingMechanism.h │ │ │ │ │ ├── RotatingMechanism.ini │ │ │ │ │ ├── Turret.h │ │ │ │ │ └── Turret.ini │ │ │ │ ├── RotatingMechanism.h │ │ │ │ ├── RotatingMechanism.ini │ │ │ │ ├── Turret.h │ │ │ │ └── Turret.ini │ │ │ ├── CannonStatic │ │ │ │ ├── Cannon.h │ │ │ │ ├── Cannon.ini │ │ │ │ ├── Debris │ │ │ │ │ ├── Cannon.h │ │ │ │ │ ├── Cannon.ini │ │ │ │ │ ├── Wheel.h │ │ │ │ │ ├── Wheel.ini │ │ │ │ │ ├── Wood.h │ │ │ │ │ └── Wood.ini │ │ │ │ ├── Turret.h │ │ │ │ └── Turret.ini │ │ │ ├── ChainSawFreak │ │ │ │ ├── Freak.h │ │ │ │ ├── Freak.ini │ │ │ │ ├── Saw.h │ │ │ │ └── Saw.ini │ │ │ ├── Demon │ │ │ │ ├── Demon.h │ │ │ │ ├── Demon.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── ExotechLarva │ │ │ │ ├── Arm.h │ │ │ │ ├── Arm.ini │ │ │ │ ├── BackArms.h │ │ │ │ ├── BackArms.ini │ │ │ │ ├── Beam.h │ │ │ │ ├── Beam.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Charger │ │ │ │ │ ├── Beam.h │ │ │ │ │ ├── Beam.ini │ │ │ │ │ ├── ElectricBeam.h │ │ │ │ │ ├── ElectricBeam.ini │ │ │ │ │ ├── Electricity.h │ │ │ │ │ ├── Electricity.ini │ │ │ │ │ ├── ElectricityBeams.h │ │ │ │ │ ├── ElectricityBeams.ini │ │ │ │ │ ├── FloorCharger.h │ │ │ │ │ ├── FloorCharger.ini │ │ │ │ │ ├── PlasmaBeam.h │ │ │ │ │ ├── PlasmaBeam.ini │ │ │ │ │ ├── WallCharger.h │ │ │ │ │ └── WallCharger.ini │ │ │ │ ├── Debris │ │ │ │ │ ├── BodyDebris.h │ │ │ │ │ ├── BodyDebris.ini │ │ │ │ │ ├── TailDebris01.h │ │ │ │ │ ├── TailDebris01.ini │ │ │ │ │ ├── TailDebris02.h │ │ │ │ │ └── TailDebris02.ini │ │ │ │ ├── EffectFlare.h │ │ │ │ ├── EffectFlare.ini │ │ │ │ ├── EnergyBeams.h │ │ │ │ ├── EnergyBeams.ini │ │ │ │ ├── ExotechLarva.h │ │ │ │ ├── ExotechLarva.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ ├── Projectile.ini │ │ │ │ │ ├── TailProjectile.h │ │ │ │ │ └── TailProjectile.ini │ │ │ │ ├── Weapons │ │ │ │ │ ├── PlasmaGun.h │ │ │ │ │ └── PlasmaGun.ini │ │ │ │ └── ______Work │ │ │ │ │ └── Bck2 │ │ │ │ │ ├── Arm.h │ │ │ │ │ ├── Arm.ini │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Body.ini │ │ │ │ │ ├── ExotechLarva.h │ │ │ │ │ └── ExotechLarva.ini │ │ │ ├── Grunt │ │ │ │ ├── Grunt.h │ │ │ │ ├── Grunt.ini │ │ │ │ ├── Gun.h │ │ │ │ ├── Gun.ini │ │ │ │ ├── Gun_Commander.h │ │ │ │ ├── Gun_Commander.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── GruntProjectile.h │ │ │ │ │ └── GruntProjectile.ini │ │ │ ├── Guffy │ │ │ │ ├── Guffy.h │ │ │ │ ├── Guffy.ini │ │ │ │ ├── Gun.h │ │ │ │ ├── Gun.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── GuffyProjectile.h │ │ │ │ │ └── GuffyProjectile.ini │ │ │ ├── Mental │ │ │ │ ├── 01Mental.h │ │ │ │ ├── 01Mental.ini │ │ │ │ ├── Aura.h │ │ │ │ ├── Aura.ini │ │ │ │ ├── BrainBottle.h │ │ │ │ ├── BrainBottle.ini │ │ │ │ ├── BrainDrain.h │ │ │ │ ├── BrainDrain.ini │ │ │ │ ├── BrainHoses.h │ │ │ │ ├── BrainHoses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Head2.h │ │ │ │ ├── Head2.ini │ │ │ │ ├── Horns.h │ │ │ │ ├── Horns.ini │ │ │ │ ├── Mental.h │ │ │ │ └── Mental.ini │ │ │ ├── Shooters │ │ │ │ ├── Arrow01.h │ │ │ │ └── Arrow01.ini │ │ │ ├── Summoner │ │ │ │ ├── Debris │ │ │ │ │ ├── Cloth01.h │ │ │ │ │ ├── Cloth01.ini │ │ │ │ │ ├── Cloth02.h │ │ │ │ │ ├── Cloth02.ini │ │ │ │ │ ├── Cloth03.h │ │ │ │ │ ├── Cloth03.ini │ │ │ │ │ ├── Cloth04.h │ │ │ │ │ └── Cloth04.ini │ │ │ │ ├── SpawnerProjectile │ │ │ │ │ ├── Invisible.h │ │ │ │ │ └── Invisible.ini │ │ │ │ ├── Staff.h │ │ │ │ ├── Staff.ini │ │ │ │ ├── Summoner.h │ │ │ │ └── Summoner.ini │ │ │ └── Woman │ │ │ │ ├── Woman.h │ │ │ │ └── Woman.ini │ │ ├── Gothic │ │ │ ├── Axe01 │ │ │ │ ├── Axe.h │ │ │ │ └── Axe.ini │ │ │ ├── Barrel │ │ │ │ ├── Barrel.h │ │ │ │ └── Barrel.ini │ │ │ ├── Bench │ │ │ │ ├── Bench.h │ │ │ │ └── Bench.ini │ │ │ ├── Castle │ │ │ │ ├── Fence01.h │ │ │ │ ├── Fence01.ini │ │ │ │ ├── Fence02.h │ │ │ │ ├── Fence02.ini │ │ │ │ ├── Fence03.h │ │ │ │ ├── Fence03.ini │ │ │ │ ├── Fence04.h │ │ │ │ ├── Fence04.ini │ │ │ │ ├── Fence05.h │ │ │ │ ├── Fence05.ini │ │ │ │ ├── Fence06.h │ │ │ │ ├── Fence06.ini │ │ │ │ ├── Fence07.h │ │ │ │ ├── Fence07.ini │ │ │ │ ├── Tower01.h │ │ │ │ ├── Tower01.ini │ │ │ │ ├── Tower02.h │ │ │ │ ├── Tower02.ini │ │ │ │ ├── Tower03.h │ │ │ │ └── Tower03.ini │ │ │ ├── Chimney01 │ │ │ │ ├── chimney.h │ │ │ │ └── chimney.ini │ │ │ ├── Church │ │ │ │ ├── Arch.h │ │ │ │ ├── Arch.ini │ │ │ │ ├── Roof01.h │ │ │ │ ├── Roof01.ini │ │ │ │ ├── Roof02.h │ │ │ │ └── Roof02.ini │ │ │ ├── ChurchBell │ │ │ │ ├── ChurchBell.h │ │ │ │ └── ChurchBell.ini │ │ │ ├── ChurchPortal │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── Column01 │ │ │ │ ├── Column.h │ │ │ │ └── Column.ini │ │ │ ├── Corridor │ │ │ │ ├── Bridge.h │ │ │ │ ├── Bridge.ini │ │ │ │ ├── ChurchPortal.h │ │ │ │ ├── ChurchPortal.ini │ │ │ │ ├── Column.h │ │ │ │ ├── Column.ini │ │ │ │ ├── DD.h │ │ │ │ ├── DD.ini │ │ │ │ ├── Pumpkin.h │ │ │ │ ├── Pumpkin.ini │ │ │ │ ├── Tower.h │ │ │ │ ├── Tower.ini │ │ │ │ ├── Tower02.h │ │ │ │ ├── Tower02.ini │ │ │ │ ├── Tower03.h │ │ │ │ ├── Tower03.ini │ │ │ │ ├── Tower04.h │ │ │ │ └── Tower04.ini │ │ │ ├── Cross01 │ │ │ │ ├── Cross.h │ │ │ │ └── Cross.ini │ │ │ ├── Cross02 │ │ │ │ ├── Cross.h │ │ │ │ ├── Cross.ini │ │ │ │ ├── JesusSam.h │ │ │ │ └── JesusSam.ini │ │ │ ├── Cross03 │ │ │ │ ├── Cross.h │ │ │ │ ├── Cross.ini │ │ │ │ ├── Cross01.h │ │ │ │ ├── Cross01.ini │ │ │ │ ├── CrossChurch.h │ │ │ │ ├── CrossChurch.ini │ │ │ │ ├── DeanCross.h │ │ │ │ └── DeanCross.ini │ │ │ ├── DemonStatue │ │ │ │ ├── Demon.h │ │ │ │ └── Demon.ini │ │ │ ├── Fountain │ │ │ │ ├── Fountain.h │ │ │ │ └── Fountain.ini │ │ │ ├── Glove │ │ │ │ ├── Glove.h │ │ │ │ └── Glove.ini │ │ │ ├── Grave │ │ │ │ ├── Grave.h │ │ │ │ └── Grave.ini │ │ │ ├── LandOfDamned │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── LightSource03 │ │ │ │ ├── LightSource.h │ │ │ │ └── LightSource.ini │ │ │ ├── LightSource04 │ │ │ │ ├── LightSource.h │ │ │ │ └── LightSource.ini │ │ │ ├── LightSource05 │ │ │ │ ├── LightSource.h │ │ │ │ └── LightSource.ini │ │ │ ├── Lightsource01 │ │ │ │ ├── Candle.h │ │ │ │ └── Candle.ini │ │ │ ├── Lightsource02 │ │ │ │ ├── Lightsource.h │ │ │ │ └── Lightsource.ini │ │ │ ├── Painting01 │ │ │ │ ├── Painting.h │ │ │ │ └── Painting.ini │ │ │ ├── Portal │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── Shield01 │ │ │ │ ├── Shield.h │ │ │ │ └── Shield.ini │ │ │ ├── Shield02 │ │ │ │ ├── Shield.h │ │ │ │ └── Shield.ini │ │ │ ├── Shooter02 │ │ │ │ ├── Shooter.h │ │ │ │ └── Shooter.ini │ │ │ ├── Snow │ │ │ │ ├── Snow.h │ │ │ │ └── Snow.ini │ │ │ ├── SnowMan │ │ │ │ ├── SnowMan.h │ │ │ │ └── SnowMan.ini │ │ │ ├── Statue01 │ │ │ │ ├── Statue.h │ │ │ │ └── Statue.ini │ │ │ └── Volcano │ │ │ │ ├── Volcano.h │ │ │ │ └── Volcano.ini │ │ ├── Items │ │ │ ├── Ammo │ │ │ │ ├── Napalm │ │ │ │ │ ├── Napalm.h │ │ │ │ │ └── Napalm.ini │ │ │ │ └── SniperBullets │ │ │ │ │ ├── SniperBullets.h │ │ │ │ │ └── SniperBullets.ini │ │ │ ├── Armor │ │ │ │ ├── Armor_5.h │ │ │ │ ├── Armor_5.ini │ │ │ │ ├── Helm.h │ │ │ │ └── Helm.ini │ │ │ ├── Keys │ │ │ │ ├── BookOfWisdom │ │ │ │ │ ├── Book.h │ │ │ │ │ ├── Book.ini │ │ │ │ │ ├── BookHolder.h │ │ │ │ │ └── BookHolder.ini │ │ │ │ ├── Cross │ │ │ │ │ ├── Cross.h │ │ │ │ │ └── Cross.ini │ │ │ │ ├── CrystalSkull │ │ │ │ │ ├── Skull.h │ │ │ │ │ └── Skull.ini │ │ │ │ ├── EntranceKey │ │ │ │ │ ├── EntranceKey.h │ │ │ │ │ └── EntranceKey.ini │ │ │ │ ├── GoldCross │ │ │ │ │ ├── Cross.h │ │ │ │ │ └── Cross.ini │ │ │ │ ├── GoldElephant │ │ │ │ │ ├── Elephant.h │ │ │ │ │ └── Elephant.ini │ │ │ │ ├── GoldJaguar │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ ├── GothicPapyrus │ │ │ │ │ ├── Papyrus.h │ │ │ │ │ └── Papyrus.ini │ │ │ │ ├── HawkWings │ │ │ │ │ ├── WingLeft.h │ │ │ │ │ ├── WingLeft.ini │ │ │ │ │ ├── WingRight.h │ │ │ │ │ └── WingRight.ini │ │ │ │ ├── HolyGrail │ │ │ │ │ ├── Grail.h │ │ │ │ │ └── Grail.ini │ │ │ │ ├── ManStatue │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ ├── MoonSymbol │ │ │ │ │ ├── MoonSymbol.h │ │ │ │ │ └── MoonSymbol.ini │ │ │ │ ├── Statue01 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ ├── Statue02 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ ├── Statue03 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ ├── SunSymbol │ │ │ │ │ ├── SunSymbol.h │ │ │ │ │ └── SunSymbol.ini │ │ │ │ ├── TablesOfWisdom │ │ │ │ │ ├── Tables.h │ │ │ │ │ └── Tables.ini │ │ │ │ ├── WingLion │ │ │ │ │ ├── WingLion.h │ │ │ │ │ └── WingLion.ini │ │ │ │ └── key01 │ │ │ │ │ ├── Key.h │ │ │ │ │ └── Key.ini │ │ │ └── PowerUps │ │ │ │ ├── Invisibility │ │ │ │ ├── Invinsibility.h │ │ │ │ ├── Invinsibility.ini │ │ │ │ ├── Invisibility.h │ │ │ │ └── Invisibility.ini │ │ │ │ ├── Invulnerability │ │ │ │ ├── Invulnerability.h │ │ │ │ └── Invulnerability.ini │ │ │ │ ├── SeriousBomb │ │ │ │ ├── SeriousBomb.h │ │ │ │ └── SeriousBomb.ini │ │ │ │ ├── SeriousDamage │ │ │ │ ├── SeriousDamage.h │ │ │ │ └── SeriousDamage.ini │ │ │ │ └── SeriousSpeed │ │ │ │ ├── SeriousSpeed.h │ │ │ │ └── SeriousSpeed.ini │ │ ├── Objects │ │ │ ├── Flag01 │ │ │ │ ├── Flag.h │ │ │ │ └── Flag.ini │ │ │ └── FlagPole │ │ │ │ ├── FlagPole.h │ │ │ │ └── FlagPole.ini │ │ ├── Plants │ │ │ ├── Bush10 │ │ │ │ ├── Bush.h │ │ │ │ ├── Bush.ini │ │ │ │ ├── Bush_Debris.h │ │ │ │ └── Bush_Debris.ini │ │ │ ├── Bush11 │ │ │ │ ├── Bush01.h │ │ │ │ └── Bush01.ini │ │ │ ├── Bush12 │ │ │ │ ├── Bush01.h │ │ │ │ ├── Bush01.ini │ │ │ │ ├── Bush02.h │ │ │ │ └── Bush02.ini │ │ │ ├── Bush13 │ │ │ │ ├── Barks01.h │ │ │ │ ├── Barks01.ini │ │ │ │ ├── Bush02.h │ │ │ │ ├── Bush02.ini │ │ │ │ ├── BushCoat.h │ │ │ │ └── BushCoat.ini │ │ │ ├── Grass01 │ │ │ │ ├── GRASS.h │ │ │ │ └── GRASS.ini │ │ │ ├── OldTree02 │ │ │ │ ├── Tree.h │ │ │ │ ├── Tree.ini │ │ │ │ ├── Tree_Branch.h │ │ │ │ ├── Tree_Branch.ini │ │ │ │ ├── Tree_Debris01.h │ │ │ │ └── Tree_Debris01.ini │ │ │ ├── Palm20 │ │ │ │ ├── Palm.h │ │ │ │ ├── Palm.ini │ │ │ │ ├── Palm02.h │ │ │ │ ├── Palm02.ini │ │ │ │ ├── Palm02_Debris.h │ │ │ │ ├── Palm02_Debris.ini │ │ │ │ ├── Palm02_Debris00.h │ │ │ │ ├── Palm02_Debris00.ini │ │ │ │ ├── Palm02_Debris01.h │ │ │ │ ├── Palm02_Debris01.ini │ │ │ │ ├── Palm02_Debris02.h │ │ │ │ ├── Palm02_Debris02.ini │ │ │ │ ├── Palm02_Leaf.h │ │ │ │ ├── Palm02_Leaf.ini │ │ │ │ ├── Palm03.h │ │ │ │ └── Palm03.ini │ │ │ ├── PalmBush │ │ │ │ ├── PalmBush01.h │ │ │ │ ├── PalmBush01.ini │ │ │ │ ├── PalmBush02.h │ │ │ │ ├── PalmBush02.ini │ │ │ │ ├── PalmBush03.h │ │ │ │ ├── PalmBush03.ini │ │ │ │ ├── PalmBush04.h │ │ │ │ ├── PalmBush04.ini │ │ │ │ ├── PalmBush04Bark.h │ │ │ │ ├── PalmBush04Bark.ini │ │ │ │ ├── PalmBush_Debris.h │ │ │ │ └── PalmBush_Debris.ini │ │ │ ├── Tree01 │ │ │ │ ├── TREE.h │ │ │ │ ├── TREE.ini │ │ │ │ ├── TREE_Branch.h │ │ │ │ ├── TREE_Branch.ini │ │ │ │ ├── TREE_Leaf.h │ │ │ │ ├── TREE_Leaf.ini │ │ │ │ ├── Tree_Debris00.h │ │ │ │ ├── Tree_Debris00.ini │ │ │ │ ├── Tree_Debris01.h │ │ │ │ ├── Tree_Debris01.ini │ │ │ │ ├── Tree_Debris02.h │ │ │ │ ├── Tree_Debris02.ini │ │ │ │ ├── Tree_Debris03.h │ │ │ │ ├── Tree_Debris03.ini │ │ │ │ ├── Tree_Debris04.h │ │ │ │ └── Tree_Debris04.ini │ │ │ ├── Tree10 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── Tree12 │ │ │ │ ├── TREE.h │ │ │ │ └── TREE.ini │ │ │ ├── Tree13 │ │ │ │ ├── Cherry03.h │ │ │ │ ├── Cherry03.ini │ │ │ │ ├── Cherry03_Branch.h │ │ │ │ ├── Cherry03_Branch.ini │ │ │ │ ├── Cherry03_Debris00.h │ │ │ │ ├── Cherry03_Debris00.ini │ │ │ │ ├── Cherry03_Debris01.h │ │ │ │ ├── Cherry03_Debris01.ini │ │ │ │ ├── Cherry03_Debris02.h │ │ │ │ ├── Cherry03_Debris02.ini │ │ │ │ ├── Leaves.h │ │ │ │ └── Leaves.ini │ │ │ ├── Tree15 │ │ │ │ ├── Tree.h │ │ │ │ ├── Tree.ini │ │ │ │ ├── Tree02.h │ │ │ │ ├── Tree02.ini │ │ │ │ ├── Tree02_Branch.h │ │ │ │ ├── Tree02_Branch.ini │ │ │ │ ├── Tree02_Debris00.h │ │ │ │ ├── Tree02_Debris00.ini │ │ │ │ ├── Tree02_Debris01.h │ │ │ │ ├── Tree02_Debris01.ini │ │ │ │ ├── Tree02_Leaf.h │ │ │ │ ├── Tree02_Leaf.ini │ │ │ │ ├── Tree03.h │ │ │ │ ├── Tree03.ini │ │ │ │ ├── Tree04.h │ │ │ │ └── Tree04.ini │ │ │ ├── Tree16 │ │ │ │ ├── Tree04.h │ │ │ │ └── Tree04.ini │ │ │ ├── Tree17 │ │ │ │ ├── Tree02.h │ │ │ │ ├── Tree02.ini │ │ │ │ ├── Tree03.h │ │ │ │ ├── Tree03.ini │ │ │ │ ├── Tree04.h │ │ │ │ ├── Tree04.ini │ │ │ │ ├── Tree05.h │ │ │ │ ├── Tree05.ini │ │ │ │ ├── Tree05_Branch.h │ │ │ │ ├── Tree05_Branch.ini │ │ │ │ ├── Tree05_Debris00.h │ │ │ │ ├── Tree05_Debris00.ini │ │ │ │ ├── Tree05_Debris01.h │ │ │ │ ├── Tree05_Debris01.ini │ │ │ │ ├── Tree05_Debris02.h │ │ │ │ ├── Tree05_Debris02.ini │ │ │ │ ├── Tree05_Leaf.h │ │ │ │ └── Tree05_Leaf.ini │ │ │ ├── Tree18 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── Tree19 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── Tree20 │ │ │ │ ├── Tree.h │ │ │ │ ├── Tree.ini │ │ │ │ ├── Tree02.h │ │ │ │ ├── Tree02.ini │ │ │ │ ├── Tree02_Debris00.h │ │ │ │ ├── Tree02_Debris00.ini │ │ │ │ ├── Tree02_Debris01.h │ │ │ │ ├── Tree02_Debris01.ini │ │ │ │ ├── Tree02_Debris02.h │ │ │ │ ├── Tree02_Debris02.ini │ │ │ │ ├── Tree02_Leaf.h │ │ │ │ ├── Tree02_Leaf.ini │ │ │ │ ├── Tree03.h │ │ │ │ └── Tree03.ini │ │ │ ├── WallIvy01 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── WallIvy03 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── WallIvy04 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── WallIvy05 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── WaterPlant │ │ │ │ ├── Plant.h │ │ │ │ ├── Plant.ini │ │ │ │ ├── Plant02.h │ │ │ │ └── Plant02.ini │ │ │ └── ivy │ │ │ │ ├── Ivy.h │ │ │ │ ├── Ivy.ini │ │ │ │ ├── Ivy_Debris.h │ │ │ │ └── Ivy_Debris.ini │ │ ├── Player │ │ │ ├── BoxerBarry │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── DiscoDan │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Hair.h │ │ │ │ ├── Hair.ini │ │ │ │ ├── Hat.h │ │ │ │ ├── Hat.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── KleerKenny │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── MightyMarvin │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SeriousSam │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── Swdm │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ └── Zorg │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ ├── SouthAmerica │ │ │ ├── Altar │ │ │ │ ├── Altar.h │ │ │ │ └── Altar.ini │ │ │ ├── Bridge │ │ │ │ ├── Bridge.h │ │ │ │ ├── Bridge.ini │ │ │ │ ├── BridgeSupport.h │ │ │ │ └── BridgeSupport.ini │ │ │ ├── CaveEntrance │ │ │ │ ├── CaveEntrance.h │ │ │ │ └── CaveEntrance.ini │ │ │ ├── Column01 │ │ │ │ ├── Columns.h │ │ │ │ └── Columns.ini │ │ │ ├── CrystalSkull │ │ │ │ ├── Skull04.h │ │ │ │ ├── Skull04.ini │ │ │ │ ├── Skull05.h │ │ │ │ └── Skull05.ini │ │ │ ├── DragonHead01 │ │ │ │ ├── Head.h │ │ │ │ └── Head.ini │ │ │ ├── DragonHead02 │ │ │ │ ├── Head.h │ │ │ │ └── Head.ini │ │ │ ├── DragonHead03 │ │ │ │ ├── DragonHead.h │ │ │ │ └── DragonHead.ini │ │ │ ├── FireHolder01 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder02 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder03 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder04 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder05 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder06 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder07 │ │ │ │ ├── FireHolder.h │ │ │ │ ├── FireHolder.ini │ │ │ │ ├── FireHolderNoFire.h │ │ │ │ └── FireHolderNoFire.ini │ │ │ ├── FireHolder08 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── Hand │ │ │ │ ├── Hand.h │ │ │ │ └── Hand.ini │ │ │ ├── HeadEntrance │ │ │ │ ├── Entrance.h │ │ │ │ └── Entrance.ini │ │ │ ├── HeadStatue01 │ │ │ │ ├── HeadStatue.h │ │ │ │ └── HeadStatue.ini │ │ │ ├── Jaguar │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Jaguar.h │ │ │ │ └── Jaguar.ini │ │ │ ├── LaserMechanism │ │ │ │ ├── LaserMechanism.h │ │ │ │ └── LaserMechanism.ini │ │ │ ├── Pyramid │ │ │ │ ├── Pyramid.h │ │ │ │ ├── Pyramid.ini │ │ │ │ ├── PyramidSmall.h │ │ │ │ ├── PyramidSmall.ini │ │ │ │ ├── Stairs.h │ │ │ │ └── Stairs.ini │ │ │ ├── Pyramid02 │ │ │ │ ├── Pyramid.h │ │ │ │ ├── Pyramid.ini │ │ │ │ ├── Stairs.h │ │ │ │ └── Stairs.ini │ │ │ ├── Pyramid03 │ │ │ │ ├── Pyramid.h │ │ │ │ ├── Pyramid.ini │ │ │ │ ├── PyramidSmall.h │ │ │ │ ├── PyramidSmall.ini │ │ │ │ ├── Stairs.h │ │ │ │ └── Stairs.ini │ │ │ ├── Rocks │ │ │ │ ├── Rock.h │ │ │ │ └── Rock.ini │ │ │ ├── Shooter01 │ │ │ │ ├── Shooter.h │ │ │ │ ├── Shooter.ini │ │ │ │ ├── Shooter02.h │ │ │ │ └── Shooter02.ini │ │ │ ├── Shooter02 │ │ │ │ ├── Shooter.h │ │ │ │ ├── Shooter.ini │ │ │ │ ├── Shooter02.h │ │ │ │ └── Shooter02.ini │ │ │ ├── Shooter03 │ │ │ │ ├── Shooter.h │ │ │ │ └── Shooter.ini │ │ │ ├── Shooter04 │ │ │ │ ├── Shooter.h │ │ │ │ └── Shooter.ini │ │ │ ├── SpiderWeb │ │ │ │ ├── SpiderWeb.h │ │ │ │ └── SpiderWeb.ini │ │ │ ├── Statue05 │ │ │ │ ├── Statue.h │ │ │ │ └── Statue.ini │ │ │ ├── SunOltar │ │ │ │ ├── Oltar.h │ │ │ │ └── Oltar.ini │ │ │ ├── Torch04 │ │ │ │ ├── Torch.h │ │ │ │ └── Torch.ini │ │ │ ├── Totem01 │ │ │ │ ├── Totem01.h │ │ │ │ └── Totem01.ini │ │ │ ├── Totem02 │ │ │ │ ├── Totem.h │ │ │ │ └── Totem.ini │ │ │ └── TwoHeadSnake │ │ │ │ ├── Snake.h │ │ │ │ └── Snake.ini │ │ ├── Switches │ │ │ └── Switch01 │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ ├── TechTest │ │ │ └── TruForm │ │ │ │ ├── BioMech.h │ │ │ │ ├── BioMech.ini │ │ │ │ ├── Portal.h │ │ │ │ ├── Portal.ini │ │ │ │ ├── Teapot.h │ │ │ │ ├── Teapot.ini │ │ │ │ ├── Toroid.h │ │ │ │ └── Toroid.ini │ │ ├── Warped │ │ │ ├── CPPR │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── GrenadeBack.h │ │ │ │ ├── GrenadeBack.ini │ │ │ │ ├── GrenadeLauncher.h │ │ │ │ ├── GrenadeLauncher.ini │ │ │ │ ├── GrenadeLauncherItem.h │ │ │ │ ├── GrenadeLauncherItem.ini │ │ │ │ ├── MovingPipe.h │ │ │ │ └── MovingPipe.ini │ │ │ ├── Laser │ │ │ │ ├── Barrel.h │ │ │ │ ├── Barrel.ini │ │ │ │ ├── Barrel_big.h │ │ │ │ ├── Barrel_big.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── LaserItem.h │ │ │ │ └── LaserItem.ini │ │ │ └── Projectile │ │ │ │ ├── Mine.h │ │ │ │ └── Mine.ini │ │ └── Weapons │ │ │ ├── ChainSaw │ │ │ ├── Blade.h │ │ │ ├── Blade.ini │ │ │ ├── BladeForPlayer.h │ │ │ ├── BladeForPlayer.ini │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── BodyForPlayer.h │ │ │ ├── BodyForPlayer.ini │ │ │ ├── ChainSaw.h │ │ │ ├── ChainSaw.ini │ │ │ ├── ChainsawForPlayer.h │ │ │ ├── ChainsawForPlayer.ini │ │ │ ├── ChainsawItem.h │ │ │ ├── ChainsawItem.ini │ │ │ ├── Teeth.h │ │ │ ├── Teeth.ini │ │ │ ├── TeethForPlayer.h │ │ │ └── TeethForPlayer.ini │ │ │ ├── Flamer │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── Flame.h │ │ │ ├── Flame.ini │ │ │ ├── Flamer.h │ │ │ ├── Flamer.ini │ │ │ ├── FlamerItem.h │ │ │ ├── FlamerItem.ini │ │ │ ├── FuelReservoir.h │ │ │ ├── FuelReservoir.ini │ │ │ └── Projectile │ │ │ │ ├── Invisible.h │ │ │ │ └── Invisible.ini │ │ │ ├── Sniper │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── Sniper.h │ │ │ ├── Sniper.ini │ │ │ ├── SniperItem.h │ │ │ └── SniperItem.ini │ │ │ └── Weapons │ │ │ ├── ChainSaw │ │ │ ├── Blade.h │ │ │ ├── Blade.ini │ │ │ ├── BladeForPlayer.h │ │ │ ├── BladeForPlayer.ini │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── BodyForPlayer.h │ │ │ ├── BodyForPlayer.ini │ │ │ ├── ChainSaw.h │ │ │ ├── ChainSaw.ini │ │ │ ├── ChainsawForPlayer.h │ │ │ ├── ChainsawForPlayer.ini │ │ │ ├── ChainsawItem.h │ │ │ ├── ChainsawItem.ini │ │ │ ├── Teeth.h │ │ │ ├── Teeth.ini │ │ │ ├── TeethForPlayer.h │ │ │ └── TeethForPlayer.ini │ │ │ ├── Flamer │ │ │ ├── Backup │ │ │ │ ├── Flamer.h │ │ │ │ └── Flamer.ini │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── Flame.h │ │ │ ├── Flame.ini │ │ │ ├── Flamer.h │ │ │ ├── Flamer.ini │ │ │ ├── FlamerItem.h │ │ │ ├── FlamerItem.ini │ │ │ ├── FuelReservoir.h │ │ │ ├── FuelReservoir.ini │ │ │ ├── Opened │ │ │ │ ├── BodyOpened.h │ │ │ │ ├── BodyOpened.ini │ │ │ │ ├── FuelReservoirOpened.h │ │ │ │ └── FuelReservoirOpened.ini │ │ │ ├── Projectile │ │ │ │ ├── Invisible.h │ │ │ │ └── Invisible.ini │ │ │ ├── Work │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ └── ok │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ └── Sniper │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── Sniper.h │ │ │ ├── Sniper.ini │ │ │ ├── SniperItem.h │ │ │ └── SniperItem.ini │ ├── RCon │ │ ├── RCon.cpp │ │ ├── RCon.h │ │ ├── RCon.rc │ │ ├── RCon.vcxproj │ │ ├── RCon.vcxproj.filters │ │ ├── RCon.vcxproj.user │ │ ├── RConDlg.cpp │ │ ├── RConDlg.h │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── res │ │ │ ├── RCon.ico │ │ │ └── RCon.rc2 │ │ └── resource.h │ ├── SamTFE.sln │ ├── SeriousSam │ │ ├── ArrowDir.h │ │ ├── CmdLine.cpp │ │ ├── CmdLine.h │ │ ├── Credits.cpp │ │ ├── Credits.h │ │ ├── FileInfo.h │ │ ├── GLSettings.cpp │ │ ├── GLSettings.h │ │ ├── LCDDrawing.cpp │ │ ├── LCDDrawing.h │ │ ├── LevelInfo.cpp │ │ ├── LevelInfo.h │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── Menu.cpp │ │ ├── Menu.h │ │ ├── MenuGadgets.cpp │ │ ├── MenuGadgets.h │ │ ├── MenuPrinting.cpp │ │ ├── MenuPrinting.h │ │ ├── SeriousSam.aps │ │ ├── SeriousSam.cpp │ │ ├── SeriousSam.h │ │ ├── SeriousSam.rc │ │ ├── SeriousSam.vcxproj │ │ ├── SeriousSam.vcxproj.filters │ │ ├── SeriousSam.vcxproj.user │ │ ├── Splash.bmp │ │ ├── SplashMask.bmp │ │ ├── SplashScreen.cpp │ │ ├── SplashScreen.h │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ ├── VarList.cpp │ │ ├── VarList.h │ │ ├── nocursor.cur │ │ ├── res │ │ │ └── SeriousSam.ico │ │ └── resource.h │ ├── SeriousSkaStudio │ │ ├── CheckBox.cpp │ │ ├── CheckBox.h │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── ColoredButton.cpp │ │ ├── ColoredButton.h │ │ ├── DlgBarTreeView.cpp │ │ ├── DlgBarTreeView.h │ │ ├── DlgClient.cpp │ │ ├── DlgClient.h │ │ ├── DlgTemplate.cpp │ │ ├── DlgTemplate.h │ │ ├── DropDown.cpp │ │ ├── DropDown.h │ │ ├── MDIClientWnd.cpp │ │ ├── MDIClientWnd.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── ModelTreeCtrl.cpp │ │ ├── ModelTreeCtrl.h │ │ ├── Parser.y │ │ ├── ParsingSymbols.h │ │ ├── ReadMe.txt │ │ ├── Scanner.l │ │ ├── SeriousSkaStudio.clw │ │ ├── SeriousSkaStudio.cpp │ │ ├── SeriousSkaStudio.h │ │ ├── SeriousSkaStudio.rc │ │ ├── SeriousSkaStudio.vcxproj │ │ ├── SeriousSkaStudio.vcxproj.filters │ │ ├── SeriousSkaStudio.vcxproj.user │ │ ├── SeriousSkaStudioDoc.cpp │ │ ├── SeriousSkaStudioDoc.h │ │ ├── SeriousSkaStudioView.cpp │ │ ├── SeriousSkaStudioView.h │ │ ├── SplitterFrame.cpp │ │ ├── SplitterFrame.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TexView.cpp │ │ ├── TexView.h │ │ ├── TextBox.cpp │ │ ├── TextBox.h │ │ ├── hlp │ │ │ ├── AfxCore.rtf │ │ │ ├── AppExit.bmp │ │ │ ├── Bullet.bmp │ │ │ ├── CurArw2.bmp │ │ │ ├── CurArw4.bmp │ │ │ ├── CurHelp.bmp │ │ │ ├── EditCopy.bmp │ │ │ ├── EditCut.bmp │ │ │ ├── EditPast.bmp │ │ │ ├── EditUndo.bmp │ │ │ ├── FileNew.bmp │ │ │ ├── FileOpen.bmp │ │ │ ├── FilePrnt.bmp │ │ │ ├── FileSave.bmp │ │ │ ├── HlpSBar.bmp │ │ │ ├── HlpTBar.bmp │ │ │ ├── RecFirst.bmp │ │ │ ├── RecLast.bmp │ │ │ ├── RecNext.bmp │ │ │ ├── RecPrev.bmp │ │ │ ├── ScMenu.bmp │ │ │ ├── Scmax.bmp │ │ │ ├── Scmin.bmp │ │ │ ├── SeriousSkaStudio.cnt │ │ │ ├── SeriousSkaStudio.hm │ │ │ └── SeriousSkaStudio.hpj │ │ ├── res │ │ │ ├── Icons.bmp │ │ │ ├── SeriousSkaStudio.ico │ │ │ ├── SeriousSkaStudio.rc2 │ │ │ ├── SeriousSkaStudioDoc.ico │ │ │ ├── Toolbar.bmp │ │ │ ├── bmp00001.bmp │ │ │ └── toolbar1.bmp │ │ ├── resource.h │ │ └── unistd.h │ ├── Shaders │ │ ├── AddShader.cpp │ │ ├── AddShaderDS.cpp │ │ ├── BaseShader.cpp │ │ ├── BaseShaderDS.cpp │ │ ├── BaseTransparent.cpp │ │ ├── BaseTransparentDS.cpp │ │ ├── ColorShader.cpp │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── DetailShader.cpp │ │ ├── DisplaceShader.cpp │ │ ├── InvisibleShader.cpp │ │ ├── MultiLayerShader.cpp │ │ ├── Reflection.cpp │ │ ├── ReflectionDS.cpp │ │ ├── ReftectionAndSpecular.cpp │ │ ├── ReftectionAndSpecularDS.cpp │ │ ├── Shaders.vcxproj │ │ ├── Shaders.vcxproj.filters │ │ ├── Shaders.vcxproj.user │ │ ├── Specular.cpp │ │ ├── SpecularDS.cpp │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ └── Translucent.cpp │ ├── TEXConv │ │ ├── TEXConv.cpp │ │ ├── TEXConv.vcxproj │ │ ├── TEXConv.vcxproj.filters │ │ └── TEXConv.vcxproj.user │ ├── WorldEditor │ │ ├── ActiveTextureWnd.cpp │ │ ├── ActiveTextureWnd.h │ │ ├── BrowseWindow.cpp │ │ ├── Browser.cpp │ │ ├── Browser.h │ │ ├── BrushPaletteWnd.cpp │ │ ├── BrushPaletteWnd.h │ │ ├── CSGDesitnationCombo.cpp │ │ ├── CSGDesitnationCombo.h │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── ColorPaletteWnd.cpp │ │ ├── ColorPaletteWnd.h │ │ ├── ColoredButton.cpp │ │ ├── CtlTipOfTheDayText.cpp │ │ ├── CtlTipOfTheDayText.h │ │ ├── CtrlAxisRadio.cpp │ │ ├── CtrlBrowseFile.cpp │ │ ├── CtrlBrowseFile.h │ │ ├── CtrlColorBrowsingModeRadio.cpp │ │ ├── CtrlColorBrowsingModeRadio.h │ │ ├── CtrlEditBoolean.cpp │ │ ├── CtrlEditBoolean.h │ │ ├── CtrlEditFlags.cpp │ │ ├── CtrlEditFlags.h │ │ ├── CtrlEditFloat.cpp │ │ ├── CtrlEditFloat.h │ │ ├── CtrlEditString.cpp │ │ ├── CtrlEditString.h │ │ ├── CtrlEnumCombo.cpp │ │ ├── CtrlEnumCombo.h │ │ ├── CustomComboWnd.cpp │ │ ├── CustomComboWnd.h │ │ ├── DlgAllignVertices.cpp │ │ ├── DlgAllignVertices.h │ │ ├── DlgAutTexturize.cpp │ │ ├── DlgAutTexturize.h │ │ ├── DlgAutoDeltaCSG.cpp │ │ ├── DlgAutoDeltaCSG.h │ │ ├── DlgBrowseByClass.cpp │ │ ├── DlgBrowseByClass.h │ │ ├── DlgComment.cpp │ │ ├── DlgComment.h │ │ ├── DlgCreateVirtualDirectory.cpp │ │ ├── DlgCreateVirtualDirectory.h │ │ ├── DlgDisplaceMapSize.cpp │ │ ├── DlgDisplaceMapSize.h │ │ ├── DlgEditFloat.cpp │ │ ├── DlgEditFloat.h │ │ ├── DlgEditTerrainBrush.cpp │ │ ├── DlgEditTerrainBrush.h │ │ ├── DlgEditTerrainLayer.cpp │ │ ├── DlgEditTerrainLayer.h │ │ ├── DlgFilterPolygonSelection.cpp │ │ ├── DlgFilterPolygonSelection.h │ │ ├── DlgFilterVertexSelection.cpp │ │ ├── DlgFilterVertexSelection.h │ │ ├── DlgGenerateFBM.cpp │ │ ├── DlgGenerateFBM.h │ │ ├── DlgLightAnimationEditor.cpp │ │ ├── DlgLightAnimationEditor.h │ │ ├── DlgLinkTree.cpp │ │ ├── DlgLinkTree.h │ │ ├── DlgMirrorAndStretch.cpp │ │ ├── DlgMirrorAndStretch.h │ │ ├── DlgNumericAlpha.cpp │ │ ├── DlgNumericAlpha.h │ │ ├── DlgPgGlobal.cpp │ │ ├── DlgPgGlobal.h │ │ ├── DlgPgPolygon.cpp │ │ ├── DlgPgPolygon.h │ │ ├── DlgPgPosition.cpp │ │ ├── DlgPgPosition.h │ │ ├── DlgPgPrimitive.cpp │ │ ├── DlgPgPrimitive.h │ │ ├── DlgPgRenderingStatistics.cpp │ │ ├── DlgPgRenderingStatistics.h │ │ ├── DlgPgSector.cpp │ │ ├── DlgPgSector.h │ │ ├── DlgPgShadow.cpp │ │ ├── DlgPgShadow.h │ │ ├── DlgPgTerrain.cpp │ │ ├── DlgPgTerrain.h │ │ ├── DlgPgTexture.cpp │ │ ├── DlgPgTexture.h │ │ ├── DlgPreferences.cpp │ │ ├── DlgPreferences.h │ │ ├── DlgProgress.cpp │ │ ├── DlgProgress.h │ │ ├── DlgRenderingPreferences.cpp │ │ ├── DlgRenderingPreferences.h │ │ ├── DlgSelectByName.cpp │ │ ├── DlgSelectByName.h │ │ ├── DlgSnapVertex.cpp │ │ ├── DlgSnapVertex.h │ │ ├── DlgStretchChildOffset.cpp │ │ ├── DlgStretchChildOffset.h │ │ ├── DlgTEOperationSettings.cpp │ │ ├── DlgTEOperationSettings.h │ │ ├── DlgTerrainProperties.cpp │ │ ├── DlgTerrainProperties.h │ │ ├── DlgTipOfTheDay.cpp │ │ ├── DlgTipOfTheDay.h │ │ ├── DlgTreeShortcuts.cpp │ │ ├── DlgTreeShortcuts.h │ │ ├── DlgWorldSettings.cpp │ │ ├── EditMipSwitchDistance.cpp │ │ ├── EditMipSwitchDistance.h │ │ ├── EntitySelectionListBox.cpp │ │ ├── EntitySelectionListBox.h │ │ ├── InfoFrame.cpp │ │ ├── InfoFrame.h │ │ ├── InfoSheet.cpp │ │ ├── InfoSheet.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── PrimitiveHistoryCombo.cpp │ │ ├── PrimitiveHistoryCombo.h │ │ ├── PropertyComboBar.cpp │ │ ├── PropertyComboBar.h │ │ ├── PropertyComboBox.cpp │ │ ├── PropertyComboBox.h │ │ ├── ReadMe.txt │ │ ├── SkyFloat.cpp │ │ ├── SkyFloat.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TerrainEditing.cpp │ │ ├── TerrainEditing.h │ │ ├── TerrainInterface.cpp │ │ ├── TerrainInterface.h │ │ ├── ToolTipWnd.cpp │ │ ├── ToolTipWnd.h │ │ ├── TriangularisationCombo.cpp │ │ ├── TriangularisationCombo.h │ │ ├── ViewTexture.cpp │ │ ├── ViewTexture.h │ │ ├── Viewers.cpp │ │ ├── Viewers.h │ │ ├── VirtualTreeCtrl.cpp │ │ ├── VirtualTreeCtrl.h │ │ ├── VirtualTreeNode.cpp │ │ ├── VirtualTreeNode.h │ │ ├── WndAnimationFrames.cpp │ │ ├── WndAnimationFrames.h │ │ ├── WndDisplayTexture.cpp │ │ ├── WndDisplayTexture.h │ │ ├── WndTerrainTilePalette.cpp │ │ ├── WndTerrainTilePalette.h │ │ ├── WndTestAnimation.cpp │ │ ├── WndTestAnimation.h │ │ ├── WorldEditor.clw │ │ ├── WorldEditor.cpp │ │ ├── WorldEditor.dsw │ │ ├── WorldEditor.h │ │ ├── WorldEditor.rc │ │ ├── WorldEditor.vcxproj │ │ ├── WorldEditor.vcxproj.filters │ │ ├── WorldEditor.vcxproj.user │ │ ├── WorldEditorDoc.cpp │ │ ├── WorldEditorDoc.h │ │ ├── WorldEditorView.cpp │ │ ├── WorldEditorView.h │ │ ├── arrowcop.cur │ │ ├── browsewindow.h │ │ ├── coloredbutton.h │ │ ├── ctrlaxisradio.h │ │ ├── dlgworldsettings.h │ │ ├── hlp │ │ │ ├── Index.hhk │ │ │ ├── Table of Contents.hhc │ │ │ ├── WorldEditor.hhp │ │ │ ├── html │ │ │ │ ├── AfxCore.rtf │ │ │ │ ├── BrowserWindow.html │ │ │ │ ├── Introduction.html │ │ │ │ ├── OldHelp.doc │ │ │ │ └── QuickStart.html │ │ │ └── images │ │ │ │ ├── Browser.jpg │ │ │ │ ├── DocumentWindow.jpg │ │ │ │ ├── MainToolbar.jpg │ │ │ │ └── WedLogo.jpg │ │ ├── res │ │ │ ├── TipOfTheDay.bmp │ │ │ ├── Toolbar.bmp │ │ │ ├── WorldEditor.ico │ │ │ ├── WorldEditor.rc2 │ │ │ ├── WorldEditorDoc.ico │ │ │ ├── bmp00001.bmp │ │ │ ├── bmp00002.bmp │ │ │ ├── bmp00003.bmp │ │ │ ├── bmp00004.bmp │ │ │ ├── bmp00005.bmp │ │ │ ├── bmp00006.bmp │ │ │ ├── csg_tool.bmp │ │ │ ├── cur00001.cur │ │ │ ├── cur00002.cur │ │ │ ├── cur00003.cur │ │ │ ├── cur00004.cur │ │ │ ├── cut_curs.ico │ │ │ ├── director.bmp │ │ │ ├── ico00001.ico │ │ │ ├── ico00002.ico │ │ │ ├── ico00003.ico │ │ │ ├── ico00004.ico │ │ │ ├── ico00005.ico │ │ │ ├── ico00006.ico │ │ │ ├── ico00007.ico │ │ │ ├── ico00008.ico │ │ │ ├── ico00009.ico │ │ │ ├── ico00010.ico │ │ │ ├── ico00011.ico │ │ │ ├── ico00012.ico │ │ │ ├── ico00013.ico │ │ │ ├── ico00014.ico │ │ │ ├── ico00015.ico │ │ │ ├── ico00016.ico │ │ │ ├── ico00017.ico │ │ │ ├── ico00018.ico │ │ │ ├── ico00019.ico │ │ │ ├── ico00020.ico │ │ │ ├── ico00021.ico │ │ │ ├── ico00022.ico │ │ │ ├── ico00023.ico │ │ │ ├── ico00024.ico │ │ │ ├── ico00025.ico │ │ │ ├── ico00026.ico │ │ │ ├── ico00027.ico │ │ │ ├── icon1.ico │ │ │ ├── idr_icon.ico │ │ │ ├── mainfram.bmp │ │ │ ├── mirror1.cur │ │ │ ├── te_erase.cur │ │ │ ├── te_heigh.cur │ │ │ ├── te_layer.cur │ │ │ ├── te_max1.cur │ │ │ ├── te_min1.cur │ │ │ ├── te_noise.cur │ │ │ ├── te_pick.cur │ │ │ ├── te_pick1.cur │ │ │ ├── te_poste.cur │ │ │ ├── toolbar1.bmp │ │ │ └── view_too.bmp │ │ └── resource.h │ ├── amp11lib │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Interface.txt │ │ ├── README │ │ ├── amp11lib.cpp │ │ ├── amp11lib.h │ │ ├── amp11lib.vcxproj │ │ ├── amp11lib.vcxproj.filters │ │ ├── amp11lib.vcxproj.user │ │ ├── amp1dec.cpp │ │ ├── amp2dec.cpp │ │ ├── amp3dec.cpp │ │ ├── ampdec.cpp │ │ ├── ampdec.h │ │ ├── ampsynth.cpp │ │ ├── binfile │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── binfarc.cpp │ │ │ ├── binfarc.h │ │ │ ├── binfcon.cpp │ │ │ ├── binfcon.h │ │ │ ├── binfhttp.cpp │ │ │ ├── binfhttp.h │ │ │ ├── binfile.cpp │ │ │ ├── binfile.h │ │ │ ├── binfilef.cpp │ │ │ ├── binfmem.cpp │ │ │ ├── binfmem.h │ │ │ ├── binfpllx.cpp │ │ │ ├── binfpllx.h │ │ │ ├── binfplnt.cpp │ │ │ ├── binfplnt.h │ │ │ ├── binfplsb.cpp │ │ │ ├── binfplsb.h │ │ │ ├── binfplwv.cpp │ │ │ ├── binfplwv.h │ │ │ ├── binfstd.cpp │ │ │ ├── binfstd.h │ │ │ ├── binftcp.cpp │ │ │ ├── binftcp.h │ │ │ └── ptypes.h │ │ ├── mpgsplit.cpp │ │ ├── mpgsplit.h │ │ ├── timer.cpp │ │ └── timer.h │ ├── bison.simple │ ├── build-linux32.sh │ ├── build-linux64.sh │ ├── cmake │ │ ├── FindSDL2.cmake │ │ └── FindVulkan.cmake │ ├── libogg │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── README │ │ ├── include │ │ │ └── ogg │ │ │ │ ├── config_types.h.in │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ ├── libogg_dynamic.vcxproj │ │ ├── libogg_dynamic.vcxproj.user │ │ ├── ogg.def │ │ └── src │ │ │ ├── bitwise.c │ │ │ └── framing.c │ └── libvorbis │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── README │ │ ├── include │ │ └── vorbis │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ │ ├── 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_dynamic.vcxproj │ │ ├── libvorbisfile_dynamic.vcxproj │ │ ├── vorbis.def │ │ ├── vorbisenc.def │ │ └── vorbisfile.def ├── Temp │ └── empty ├── Tools.Win32 │ ├── Bison.exe │ ├── Flex.exe │ ├── bison.zip │ └── flex.zip ├── VirtualTrees │ └── BasicVirtualTree.vrt ├── serioussam.desktop └── serioussam.png ├── SamTSE ├── Bin │ └── .gitkeep ├── Controls │ ├── 00-Default.ctl │ ├── 00-Default.des │ ├── 01-Keyboard.ctl │ ├── 02-PantherXL.ctl │ ├── 03-Wingman Extreme.ctl │ ├── 04-Wingman GamePad.ctl │ ├── 05-2nd Mouse.ctl │ ├── 10-DEN.ctl │ ├── Controls0.ctl │ ├── Controls1.ctl │ ├── Controls2.ctl │ ├── Controls3.ctl │ ├── Controls4.ctl │ ├── Controls5.ctl │ ├── Controls6.ctl │ ├── Controls7.ctl │ └── System │ │ └── Common.ctl ├── Data │ ├── Credits.txt │ ├── Default.ifr │ ├── Defaults │ │ └── .gitkeep │ ├── IFeel.txt │ ├── Logitech.ifr │ ├── NoCRC.lst │ ├── SED_TipOfTheDay.txt │ └── Var │ │ ├── DefaultPlayer.var │ │ └── Sam_Version.var ├── Demos │ ├── Default.ini │ ├── auto-demo0001.dem │ ├── auto-demo0001.ini │ ├── auto-demo0001Tbn.tex │ ├── auto-demo0002.dem │ ├── auto-demo0002.ini │ ├── auto-demo0002Tbn.tex │ ├── auto-demo0003.dem │ ├── auto-demo0003.ini │ ├── auto-demo0003Tbn.tex │ ├── auto-demoMP0001.dem │ ├── auto-demoMP0001.ini │ ├── auto-demoMP0001Tbn.tex │ ├── auto-demoMP0002.dem │ ├── auto-demoMP0002.ini │ └── auto-demoMP0002Tbn.tex ├── GameAgent │ ├── GameAgent.txt │ ├── main.py │ ├── run │ ├── server.py │ └── user.py ├── Help │ └── ShellSymbols.txt ├── Levels │ └── LevelsMP │ │ └── .gitkeep ├── ModEXT.txt ├── Mods │ ├── SecondEncounter.des │ ├── SecondEncounter │ │ ├── BaseBrowseInclude.lst │ │ └── BaseWriteInclude.lst │ ├── SecondEncounterTbn.tex │ ├── XPLUS.des │ ├── XPLUS │ │ └── Bin │ │ │ └── .gitkeep │ └── XPLUSTbn.tex ├── Players │ └── about_this_directory.txt ├── SE1_10b.gro ├── SaveGame │ ├── Network │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player0 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player1 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player2 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player3 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player4 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player5 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player6 │ │ └── Quick │ │ │ └── .gitkeep │ ├── Player7 │ │ └── Quick │ │ │ └── .gitkeep │ └── SplitScreen │ │ └── Quick │ │ └── .gitkeep ├── Scripts │ ├── Addons │ │ ├── Default.ini │ │ ├── Extreme.ini │ │ ├── SFX-AutoAdjust.ini │ │ ├── SSam_Voodoo2.ini │ │ └── SafeMode.ini │ ├── Commands │ │ ├── kick.ini │ │ ├── list.ini │ │ ├── rkick.ini │ │ └── rlist.ini │ ├── CustomOptions │ │ ├── GFX-AdvancedRendering.cfg │ │ ├── GFX-AdvancedRendering.des │ │ ├── GFX-RenderingOptions.cfg │ │ ├── GFX-RenderingOptions.des │ │ ├── HUD-Options.cfg │ │ ├── HUD-Options.des │ │ ├── NET-PredictionOptions.cfg │ │ └── NET-PredictionOptions.des │ ├── Dedicated │ │ ├── DefaultCoop │ │ │ ├── 1_begin.ini │ │ │ ├── 1_end.ini │ │ │ └── init.ini │ │ ├── DefaultFragmatchSE │ │ │ ├── 1_begin.ini │ │ │ ├── 1_end.ini │ │ │ ├── 2_begin.ini │ │ │ ├── 2_end.ini │ │ │ ├── 3_begin.ini │ │ │ ├── 3_end.ini │ │ │ ├── 4_begin.ini │ │ │ ├── 4_end.ini │ │ │ ├── 5_begin.ini │ │ │ ├── 5_end.ini │ │ │ ├── 6_begin.ini │ │ │ ├── 6_end.ini │ │ │ ├── 7_begin.ini │ │ │ ├── 7_end.ini │ │ │ ├── 8_begin.ini │ │ │ ├── 8_end.ini │ │ │ └── init.ini │ │ └── DefaultScorematchSE │ │ │ ├── 1_begin.ini │ │ │ ├── 1_end.ini │ │ │ ├── 2_begin.ini │ │ │ ├── 2_end.ini │ │ │ ├── 3_begin.ini │ │ │ ├── 3_end.ini │ │ │ ├── 4_begin.ini │ │ │ ├── 4_end.ini │ │ │ ├── 5_begin.ini │ │ │ ├── 5_end.ini │ │ │ ├── 6_begin.ini │ │ │ ├── 6_end.ini │ │ │ ├── 7_begin.ini │ │ │ ├── 7_end.ini │ │ │ ├── 8_begin.ini │ │ │ ├── 8_end.ini │ │ │ └── init.ini │ ├── Dedicated_startup.ini │ ├── GLSettings │ │ ├── 3Dfx-V1.ini │ │ ├── 3Dfx-V2.ini │ │ ├── 3Dfx-V3.ini │ │ ├── 3Dfx-V5.ini │ │ ├── ATI-FGL.ini │ │ ├── ATI-Maxx.ini │ │ ├── ATI-R128.ini │ │ ├── ATI-RPRO.ini │ │ ├── ATI-Radeon.ini │ │ ├── Default.ini │ │ ├── GLSettings.lst │ │ ├── I-i740.ini │ │ ├── I-i752.ini │ │ ├── Initial.ini │ │ ├── MGA-G200.ini │ │ ├── MGA-G400.ini │ │ ├── NV-GF.ini │ │ ├── NV-GF3.INI │ │ ├── NV-TNT.ini │ │ ├── PVR-Kyro.ini │ │ ├── RAM.ini │ │ ├── S3-S2K.ini │ │ └── S3-S4.ini │ ├── Game_startup.ini │ ├── Menu │ │ ├── ApplyShadowmaps.ini │ │ ├── ApplyTextures.ini │ │ ├── ApplyVideo.ini │ │ ├── GameOptions.cfg │ │ ├── RenderingOptions.cfg │ │ └── SPOptions.cfg │ ├── NetSettings │ │ ├── 128k-DSL.des │ │ ├── 128k-DSL.ini │ │ ├── 1mb-Cable.des │ │ ├── 1mb-Cable.ini │ │ ├── 256k-DSL.des │ │ ├── 256k-DSL.ini │ │ ├── 2mb-Cable.des │ │ ├── 2mb-Cable.ini │ │ ├── 33.6k-Dialup.des │ │ ├── 33.6k-Dialup.ini │ │ ├── 3mb-Cable.des │ │ ├── 3mb-Cable.ini │ │ ├── 512k-DSL.des │ │ ├── 512k-DSL.ini │ │ ├── 56-normal.des │ │ ├── 56-normal.ini │ │ ├── 56k-Dialup.des │ │ ├── 56k-Dialup.ini │ │ ├── 56k-quality.des │ │ ├── 56k-quality.ini │ │ ├── 5mb-Fiber.des │ │ ├── 5mb-Fiber.ini │ │ ├── 64k-ISDN.des │ │ ├── 64k-ISDN.ini │ │ ├── 768k-DSL.des │ │ ├── 768k-DSL.ini │ │ ├── DSLCable.des │ │ ├── DSLCable.ini │ │ ├── ISDN.des │ │ ├── ISDN.ini │ │ ├── LAN.des │ │ ├── LAN.ini │ │ ├── OldModem.des │ │ └── OldModem.ini │ └── WorldEditorKeys │ │ ├── F2.ini │ │ ├── F3.ini │ │ ├── F4.ini │ │ ├── MiddleMouse.ini │ │ ├── Shift_F2.ini │ │ ├── Shift_F3.ini │ │ └── Shift_F4.ini ├── Sources │ ├── CMakeLists.txt │ ├── DecodeReport │ │ ├── DecodeReport.cpp │ │ ├── DecodeReport.vcxproj │ │ ├── DecodeReport.vcxproj.filters │ │ ├── DecodeReport.vcxproj.user │ │ ├── StdAfx.cpp │ │ └── StdAfx.h │ ├── DedicatedServer │ │ ├── DedicatedServer.cpp │ │ ├── DedicatedServer.rc │ │ ├── DedicatedServer.vcxproj │ │ ├── DedicatedServer.vcxproj.filters │ │ ├── DedicatedServer.vcxproj.user │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── icon1.ico │ │ └── resource.h │ ├── Depend │ │ ├── Depend.vcxproj │ │ ├── Depend.vcxproj.filters │ │ ├── Depend.vcxproj.user │ │ ├── Dependency.cpp │ │ ├── Dependency.h │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ └── UtilityDepend.cpp │ ├── Ecc │ │ ├── Ecc.vcxproj │ │ ├── Ecc.vcxproj.filters │ │ ├── Ecc.vcxproj.user │ │ ├── Main.cpp │ │ ├── Main.h │ │ ├── Parser.hpp │ │ ├── Parser.y │ │ ├── Scanner.l │ │ ├── StdH.h │ │ ├── bison.simple │ │ └── unistd.h │ ├── Engine │ │ ├── Base │ │ │ ├── Anim.cpp │ │ │ ├── Anim.h │ │ │ ├── Assert.h │ │ │ ├── Base.h │ │ │ ├── CRC.cpp │ │ │ ├── CRC.h │ │ │ ├── CRCTable.cpp │ │ │ ├── CRCTable.h │ │ │ ├── CTString.cpp │ │ │ ├── CTString.h │ │ │ ├── CTString.inl │ │ │ ├── Changeable.cpp │ │ │ ├── Changeable.h │ │ │ ├── ChangeableRT.h │ │ │ ├── Console.cpp │ │ │ ├── Console.h │ │ │ ├── Console_internal.h │ │ │ ├── Directory.cpp │ │ │ ├── DynamicLoader.h │ │ │ ├── ErrorReporting.cpp │ │ │ ├── ErrorReporting.h │ │ │ ├── ErrorTable.h │ │ │ ├── FLEX.skl │ │ │ ├── FileName.cpp │ │ │ ├── FileName.h │ │ │ ├── FileSystem.h │ │ │ ├── GroupFile.h │ │ │ ├── IFeel.cpp │ │ │ ├── IFeel.h │ │ │ ├── Input.cpp │ │ │ ├── Input.h │ │ │ ├── KeyNames.h │ │ │ ├── ListIterator.inl │ │ │ ├── Lists.cpp │ │ │ ├── Lists.h │ │ │ ├── Lists.inl │ │ │ ├── Memory.cpp │ │ │ ├── Memory.h │ │ │ ├── NullSynchronization.cpp │ │ │ ├── Parser.hpp │ │ │ ├── Parser.y │ │ │ ├── ParsingSymbols.h │ │ │ ├── Priority.inl │ │ │ ├── Profiling.cpp │ │ │ ├── Profiling.h │ │ │ ├── ProfilingEnabled.h │ │ │ ├── ProgressHook.cpp │ │ │ ├── ProgressHook.h │ │ │ ├── Protection.cpp │ │ │ ├── Protection.h │ │ │ ├── Registry.cpp │ │ │ ├── Registry.h │ │ │ ├── Relations.cpp │ │ │ ├── Relations.h │ │ │ ├── ReplaceFile.cpp │ │ │ ├── ReplaceFile.h │ │ │ ├── SDL │ │ │ │ ├── SDLEvents.cpp │ │ │ │ ├── SDLEvents.h │ │ │ │ ├── SDLInput.cpp │ │ │ │ ├── SDLSynchronization.cpp │ │ │ │ └── SDLTimer.cpp │ │ │ ├── Scanner.l │ │ │ ├── Serial.cpp │ │ │ ├── Serial.h │ │ │ ├── Shell.cpp │ │ │ ├── Shell.h │ │ │ ├── ShellTypes.cpp │ │ │ ├── Shell_internal.h │ │ │ ├── StackDump.cpp │ │ │ ├── Statistics.cpp │ │ │ ├── Statistics.h │ │ │ ├── Statistics_Internal.h │ │ │ ├── Stream.cpp │ │ │ ├── Stream.h │ │ │ ├── Synchronization.h │ │ │ ├── SystemSpecificInclude.h │ │ │ ├── ThreadLocalStorage.h │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── Timer.inl │ │ │ ├── Translation.cpp │ │ │ ├── Translation.h │ │ │ ├── TranslationPair.h │ │ │ ├── Types.h │ │ │ ├── Unix │ │ │ │ ├── UnixDynamicLoader.cpp │ │ │ │ ├── UnixFileSystem.cpp │ │ │ │ ├── UnixSynchronization.cpp │ │ │ │ └── UnixSynchronization.h │ │ │ ├── Unzip.cpp │ │ │ ├── Unzip.h │ │ │ ├── Updateable.cpp │ │ │ ├── Updateable.h │ │ │ ├── UpdateableRT.h │ │ │ ├── Win32 │ │ │ │ ├── Win32DynamicLoader.cpp │ │ │ │ ├── Win32FileSystem.cpp │ │ │ │ ├── Win32Input.cpp │ │ │ │ ├── Win32Synchronization.cpp │ │ │ │ └── Win32Timer.cpp │ │ │ ├── bison.simple │ │ │ ├── iconvlite.cpp │ │ │ └── iconvlite.h │ │ ├── Brushes │ │ │ ├── Brush.cpp │ │ │ ├── Brush.h │ │ │ ├── BrushArchive.cpp │ │ │ ├── BrushArchive.h │ │ │ ├── BrushBase.h │ │ │ ├── BrushExport.cpp │ │ │ ├── BrushIO.cpp │ │ │ ├── BrushImport.cpp │ │ │ ├── BrushMip.cpp │ │ │ ├── BrushPolygon.cpp │ │ │ ├── BrushSector.cpp │ │ │ ├── BrushShadows.cpp │ │ │ ├── BrushTransformed.h │ │ │ └── BrushTriangularize.cpp │ │ ├── Build.h │ │ ├── Classes │ │ │ ├── BaseEvents.es │ │ │ ├── MovableBrushEntity.es │ │ │ ├── MovableEntity.es │ │ │ ├── MovableModelEntity.es │ │ │ └── PlayerEntity.es │ │ ├── CurrentVersion.h │ │ ├── Engine.cpp │ │ ├── Engine.h │ │ ├── Engine.vcxproj │ │ ├── Engine.vcxproj.filters │ │ ├── Engine.vcxproj.user │ │ ├── Entities │ │ │ ├── Entity.cpp │ │ │ ├── Entity.h │ │ │ ├── EntityClass.cpp │ │ │ ├── EntityClass.h │ │ │ ├── EntityCollision.cpp │ │ │ ├── EntityCollision.h │ │ │ ├── EntityCopying.cpp │ │ │ ├── EntityEvent.h │ │ │ ├── EntityPointer.h │ │ │ ├── EntityProperties.cpp │ │ │ ├── EntityProperties.h │ │ │ ├── FieldBSPTesting.cpp │ │ │ ├── FieldSettings.h │ │ │ ├── InternalClasses.h │ │ │ ├── LastPositions.cpp │ │ │ ├── LastPositions.h │ │ │ ├── NearestPolygon.cpp │ │ │ ├── PlayerCharacter.cpp │ │ │ ├── PlayerCharacter.h │ │ │ ├── Precaching.h │ │ │ └── ShadingInfo.h │ │ ├── GameAgent │ │ │ ├── GameAgent.cpp │ │ │ ├── GameAgent.h │ │ │ └── MSLegacy.h │ │ ├── GameShell.h │ │ ├── Graphics │ │ │ ├── Adapter.cpp │ │ │ ├── Adapter.h │ │ │ ├── Benchmark.cpp │ │ │ ├── Color.cpp │ │ │ ├── Color.h │ │ │ ├── DepthCheck.cpp │ │ │ ├── DisplayMode.cpp │ │ │ ├── DisplayMode.h │ │ │ ├── DrawPort.cpp │ │ │ ├── DrawPort.h │ │ │ ├── DrawPort_Particles.cpp │ │ │ ├── DrawPort_RenderScene.cpp │ │ │ ├── Fog.cpp │ │ │ ├── Fog.h │ │ │ ├── Fog_internal.h │ │ │ ├── Font.cpp │ │ │ ├── Font.h │ │ │ ├── GfxLibrary.cpp │ │ │ ├── GfxLibrary.h │ │ │ ├── GfxProfile.cpp │ │ │ ├── GfxProfile.h │ │ │ ├── Gfx_Direct3D.cpp │ │ │ ├── Gfx_Direct3D_Colors.cpp │ │ │ ├── Gfx_Direct3D_Textures.cpp │ │ │ ├── Gfx_OpenGL.cpp │ │ │ ├── Gfx_OpenGL.h │ │ │ ├── Gfx_OpenGL_Textures.cpp │ │ │ ├── Gfx_Vulkan.cpp │ │ │ ├── Gfx_Vulkan_Textures.cpp │ │ │ ├── Gfx_wrapper.cpp │ │ │ ├── Gfx_wrapper.h │ │ │ ├── Gfx_wrapper_Direct3D.cpp │ │ │ ├── Gfx_wrapper_OpenGL.cpp │ │ │ ├── Gfx_wrapper_Vulkan.cpp │ │ │ ├── Graphics.cpp │ │ │ ├── ImageInfo.cpp │ │ │ ├── ImageInfo.h │ │ │ ├── MultiMonitor.cpp │ │ │ ├── MultiMonitor.h │ │ │ ├── OpenGL.h │ │ │ ├── Raster.cpp │ │ │ ├── Raster.h │ │ │ ├── RenderPoly.h │ │ │ ├── RenderScene.h │ │ │ ├── SDL │ │ │ │ ├── SDLAdapter.cpp │ │ │ │ ├── SDLOpenGL.cpp │ │ │ │ └── SDL_vulkan.h │ │ │ ├── Shader.cpp │ │ │ ├── Shader.h │ │ │ ├── ShadowMap.cpp │ │ │ ├── ShadowMap.h │ │ │ ├── Stereo.cpp │ │ │ ├── Stereo.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── TextureEffects.cpp │ │ │ ├── TextureEffects.h │ │ │ ├── TextureRender.cpp │ │ │ ├── Vertex.h │ │ │ ├── ViewPort.cpp │ │ │ ├── ViewPort.h │ │ │ ├── Vulkan │ │ │ │ ├── Shaders │ │ │ │ │ ├── Compiled │ │ │ │ │ │ ├── OcclusionCheckFragSpv.h │ │ │ │ │ │ ├── OcclusionCheckVertSpv.h │ │ │ │ │ │ ├── TexturedAlphaFragSpv.h │ │ │ │ │ │ ├── TexturedFragSpv.h │ │ │ │ │ │ └── TexturedVertSpv.h │ │ │ │ │ ├── CompiledSpirv │ │ │ │ │ │ ├── OcclusionCheckFrag.spv │ │ │ │ │ │ ├── OcclusionCheckVert.spv │ │ │ │ │ │ ├── TexturedAlphaFrag.spv │ │ │ │ │ │ ├── TexturedFrag.spv │ │ │ │ │ │ └── TexturedVert.spv │ │ │ │ │ ├── GenerateSpirv.bat │ │ │ │ │ ├── GenerateSpirvToC.py │ │ │ │ │ ├── OcclusionCheck.frag │ │ │ │ │ ├── OcclusionCheck.vert │ │ │ │ │ ├── Textured.frag │ │ │ │ │ ├── Textured.vert │ │ │ │ │ └── TexturedAlpha.frag │ │ │ │ ├── SvkDescriptors.cpp │ │ │ │ ├── SvkDynamicBuffers.cpp │ │ │ │ ├── SvkMain.h │ │ │ │ ├── SvkMatrix.cpp │ │ │ │ ├── SvkMemoryPool.cpp │ │ │ │ ├── SvkMemoryPool.h │ │ │ │ ├── SvkPipelineStates.h │ │ │ │ ├── SvkPipelines.cpp │ │ │ │ ├── SvkQueries.cpp │ │ │ │ ├── SvkSamplerStates.h │ │ │ │ ├── SvkSamplers.cpp │ │ │ │ ├── SvkShaders.cpp │ │ │ │ ├── SvkStaticHashTable.h │ │ │ │ ├── SvkSwapchain.cpp │ │ │ │ ├── SvkTextures.cpp │ │ │ │ ├── SvkUtils.cpp │ │ │ │ ├── SvkVertex.h │ │ │ │ ├── VulkanInclude.h │ │ │ │ ├── _vk_mem_alloc_old.h │ │ │ │ ├── vk_mem_alloc.cpp │ │ │ │ └── vk_mem_alloc.h │ │ │ ├── Win32 │ │ │ │ ├── Win32Adapter.cpp │ │ │ │ └── Win32OpenGL.cpp │ │ │ ├── gl_functions.h │ │ │ └── gl_types.h │ │ ├── Light │ │ │ ├── Gradient.h │ │ │ ├── LayerMaker.cpp │ │ │ ├── LayerMixer.cpp │ │ │ ├── LensFlares.h │ │ │ ├── LightSource.cpp │ │ │ ├── LightSource.h │ │ │ └── Shadows_internal.h │ │ ├── Math │ │ │ ├── AABBox.h │ │ │ ├── Clipping.inl │ │ │ ├── FixInt.h │ │ │ ├── Float.cpp │ │ │ ├── Float.h │ │ │ ├── Functions.cpp │ │ │ ├── Functions.h │ │ │ ├── Geometry.cpp │ │ │ ├── Geometry.h │ │ │ ├── Geometry.inl │ │ │ ├── Geometry_DOUBLE.cpp │ │ │ ├── Matrix.h │ │ │ ├── OBBox.h │ │ │ ├── Object3D.cpp │ │ │ ├── Object3D.h │ │ │ ├── Object3D_CSG.cpp │ │ │ ├── Object3D_IO.cpp │ │ │ ├── ObjectSector.cpp │ │ │ ├── Placement.cpp │ │ │ ├── Placement.h │ │ │ ├── Plane.h │ │ │ ├── Projection.cpp │ │ │ ├── Projection.h │ │ │ ├── Projection_DOUBLE.h │ │ │ ├── Projection_Isometric.cpp │ │ │ ├── Projection_Parallel.cpp │ │ │ ├── Projection_Perspective.cpp │ │ │ ├── Projection_Simple.cpp │ │ │ ├── Projection_Simple_DOUBLE.cpp │ │ │ ├── Quaternion.h │ │ │ ├── TextureMapping.cpp │ │ │ ├── TextureMapping.h │ │ │ └── Vector.h │ │ ├── Models │ │ │ ├── EditModel.cpp │ │ │ ├── EditModel.h │ │ │ ├── MipMaker.cpp │ │ │ ├── MipMaker.h │ │ │ ├── Model.cpp │ │ │ ├── Model.h │ │ │ ├── ModelData.h │ │ │ ├── ModelObject.h │ │ │ ├── ModelProfile.cpp │ │ │ ├── ModelProfile.h │ │ │ ├── Model_internal.h │ │ │ ├── Normals.cpp │ │ │ ├── Normals.h │ │ │ ├── RenderModel.cpp │ │ │ ├── RenderModel.h │ │ │ ├── RenderModel_Mask.cpp │ │ │ ├── RenderModel_View.cpp │ │ │ ├── RenderModel_internal.h │ │ │ └── VertexGetting.cpp │ │ ├── Network │ │ │ ├── ActionBuffer.cpp │ │ │ ├── ActionBuffer.h │ │ │ ├── Buffer.cpp │ │ │ ├── Buffer.h │ │ │ ├── CPacket.cpp │ │ │ ├── CPacket.h │ │ │ ├── ClientInterface.cpp │ │ │ ├── ClientInterface.h │ │ │ ├── Common.h │ │ │ ├── CommunicationInterface.cpp │ │ │ ├── CommunicationInterface.h │ │ │ ├── Compression.cpp │ │ │ ├── Compression.h │ │ │ ├── Diff.cpp │ │ │ ├── Diff.h │ │ │ ├── EMsgBuffer.cpp │ │ │ ├── EMsgBuffer.h │ │ │ ├── EntityHashing.cpp │ │ │ ├── EntityHashing.h │ │ │ ├── LevelChange.h │ │ │ ├── MessageDispatcher.cpp │ │ │ ├── MessageDispatcher.h │ │ │ ├── Network.cpp │ │ │ ├── Network.h │ │ │ ├── NetworkMessage.cpp │ │ │ ├── NetworkMessage.h │ │ │ ├── NetworkProfile.cpp │ │ │ ├── NetworkProfile.h │ │ │ ├── Packet.cpp │ │ │ ├── Packet.h │ │ │ ├── PlayerBuffer.cpp │ │ │ ├── PlayerBuffer.h │ │ │ ├── PlayerSource.cpp │ │ │ ├── PlayerSource.h │ │ │ ├── PlayerTarget.cpp │ │ │ ├── PlayerTarget.h │ │ │ ├── Server.cpp │ │ │ ├── Server.h │ │ │ ├── SessionSocket.h │ │ │ ├── SessionState.cpp │ │ │ └── SessionState.h │ │ ├── Rendering │ │ │ ├── RenCache.cpp │ │ │ ├── RendASER.cpp │ │ │ ├── RendClip.cpp │ │ │ ├── RendMisc.cpp │ │ │ ├── Render.cpp │ │ │ ├── Render.h │ │ │ ├── RenderAdding.cpp │ │ │ ├── RenderBrushes.cpp │ │ │ ├── RenderModels.cpp │ │ │ ├── RenderProfile.cpp │ │ │ ├── RenderProfile.h │ │ │ ├── Render_internal.h │ │ │ └── SelectOnRender.cpp │ │ ├── Ska │ │ │ ├── AnimSet.cpp │ │ │ ├── AnimSet.h │ │ │ ├── Mesh.cpp │ │ │ ├── Mesh.h │ │ │ ├── ModelInstance.cpp │ │ │ ├── ModelInstance.h │ │ │ ├── ParsingSmbs.h │ │ │ ├── RMRender.cpp │ │ │ ├── RMRenderMask.cpp │ │ │ ├── Render.h │ │ │ ├── Skeleton.cpp │ │ │ ├── Skeleton.h │ │ │ ├── StringTable.cpp │ │ │ ├── StringTable.h │ │ │ ├── bison.simple │ │ │ ├── smcFlex.skl │ │ │ ├── smcPars.hpp │ │ │ ├── smcPars.y │ │ │ ├── smcScan.l │ │ │ └── smcScwin.l │ │ ├── Sound │ │ │ ├── DSOUND.H │ │ │ ├── SoundData.cpp │ │ │ ├── SoundData.h │ │ │ ├── SoundDecoder.cpp │ │ │ ├── SoundDecoder.h │ │ │ ├── SoundLibrary.cpp │ │ │ ├── SoundLibrary.h │ │ │ ├── SoundListener.h │ │ │ ├── SoundMixer.cpp │ │ │ ├── SoundMixer386.asm │ │ │ ├── SoundObject.cpp │ │ │ ├── SoundObject.h │ │ │ ├── SoundProfile.cpp │ │ │ ├── SoundProfile.h │ │ │ ├── Wave.cpp │ │ │ ├── Wave.h │ │ │ ├── al_functions.h │ │ │ ├── eax.h │ │ │ └── ov_functions.h │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ ├── Templates │ │ │ ├── AllocationArray.cpp │ │ │ ├── AllocationArray.h │ │ │ ├── BSP.cpp │ │ │ ├── BSP.h │ │ │ ├── BSP_internal.h │ │ │ ├── DynamicArray.cpp │ │ │ ├── DynamicArray.h │ │ │ ├── DynamicContainer.cpp │ │ │ ├── DynamicContainer.h │ │ │ ├── DynamicStackArray.cpp │ │ │ ├── DynamicStackArray.h │ │ │ ├── HashTableTemplate.cpp │ │ │ ├── HashTableTemplate.h │ │ │ ├── LinearAllocator.cpp │ │ │ ├── LinearAllocator.h │ │ │ ├── NameTable.cpp │ │ │ ├── NameTable.h │ │ │ ├── NameTable_CTFileName.cpp │ │ │ ├── NameTable_CTFileName.h │ │ │ ├── NameTable_CTranslationPair.cpp │ │ │ ├── NameTable_CTranslationPair.h │ │ │ ├── Selection.cpp │ │ │ ├── Selection.h │ │ │ ├── StaticArray.cpp │ │ │ ├── StaticArray.h │ │ │ ├── StaticStackArray.cpp │ │ │ ├── StaticStackArray.h │ │ │ ├── Stock.cpp │ │ │ ├── Stock.h │ │ │ ├── Stock_CAnimData.cpp │ │ │ ├── Stock_CAnimData.h │ │ │ ├── Stock_CAnimSet.cpp │ │ │ ├── Stock_CAnimSet.h │ │ │ ├── Stock_CEntityClass.cpp │ │ │ ├── Stock_CEntityClass.h │ │ │ ├── Stock_CMesh.cpp │ │ │ ├── Stock_CMesh.h │ │ │ ├── Stock_CModelData.cpp │ │ │ ├── Stock_CModelData.h │ │ │ ├── Stock_CShader.cpp │ │ │ ├── Stock_CShader.h │ │ │ ├── Stock_CSkeleton.cpp │ │ │ ├── Stock_CSkeleton.h │ │ │ ├── Stock_CSoundData.cpp │ │ │ ├── Stock_CSoundData.h │ │ │ ├── Stock_CTextureData.cpp │ │ │ └── Stock_CTextureData.h │ │ ├── Terrain │ │ │ ├── ArrayHolder.cpp │ │ │ ├── ArrayHolder.h │ │ │ ├── Terrain.cpp │ │ │ ├── Terrain.h │ │ │ ├── TerrainArchive.cpp │ │ │ ├── TerrainArchive.h │ │ │ ├── TerrainEditing.cpp │ │ │ ├── TerrainEditing.h │ │ │ ├── TerrainLayer.cpp │ │ │ ├── TerrainLayer.h │ │ │ ├── TerrainMisc.cpp │ │ │ ├── TerrainMisc.h │ │ │ ├── TerrainRayCasting.cpp │ │ │ ├── TerrainRayCasting.h │ │ │ ├── TerrainRender.cpp │ │ │ ├── TerrainRender.h │ │ │ ├── TerrainTile.cpp │ │ │ └── TerrainTile.h │ │ ├── Types.h │ │ ├── World │ │ │ ├── PhysicsProfile.cpp │ │ │ ├── PhysicsProfile.h │ │ │ ├── World.cpp │ │ │ ├── World.h │ │ │ ├── WorldCSG.cpp │ │ │ ├── WorldCollision.cpp │ │ │ ├── WorldCollision.h │ │ │ ├── WorldCollisionGrid.cpp │ │ │ ├── WorldEditingProfile.cpp │ │ │ ├── WorldEditingProfile.h │ │ │ ├── WorldIO.cpp │ │ │ ├── WorldRayCasting.cpp │ │ │ ├── WorldRayCasting.h │ │ │ └── WorldSettings.h │ │ ├── temp.h │ │ └── zlib │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── EngineGui │ │ ├── DlgChooseTextureType.cpp │ │ ├── DlgChooseTextureType.h │ │ ├── DlgCreateAnimatedTexture.cpp │ │ ├── DlgCreateAnimatedTexture.h │ │ ├── DlgCreateEffectTexture.cpp │ │ ├── DlgCreateEffectTexture.h │ │ ├── DlgCreateNormalTexture.cpp │ │ ├── DlgCreateNormalTexture.h │ │ ├── DlgSelectMode.cpp │ │ ├── DlgSelectMode.h │ │ ├── EngineGUI.cpp │ │ ├── EngineGUI.h │ │ ├── EngineGUI.vcxproj │ │ ├── EngineGUI.vcxproj.filters │ │ ├── EngineGUI.vcxproj.user │ │ ├── FileRequester.cpp │ │ ├── Graphics.clw │ │ ├── Graphics.rc │ │ ├── ReadMe.txt │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ ├── WndDisplayTexture.cpp │ │ ├── WndDisplayTexture.h │ │ ├── mode_bro.bmp │ │ └── resource.h │ ├── Entities │ │ ├── Acid.es │ │ ├── AirWave.es │ │ ├── AmmoItem.es │ │ ├── AmmoPack.es │ │ ├── AnimationChanger.es │ │ ├── AnimationHub.es │ │ ├── ArmorItem.es │ │ ├── BackgroundViewer.es │ │ ├── BasicEffects.es │ │ ├── Beast.es │ │ ├── BigHead.es │ │ ├── BlendController.es │ │ ├── BloodSpray.es │ │ ├── Boneman.es │ │ ├── Bouncer.es │ │ ├── Bullet.es │ │ ├── Camera.es │ │ ├── CameraMarker.es │ │ ├── CannonBall.es │ │ ├── Catman.es │ │ ├── Common │ │ │ ├── Common.cpp │ │ │ ├── Common.h │ │ │ ├── Debris.cpp │ │ │ ├── Flags.h │ │ │ ├── GameInterface.h │ │ │ ├── HUD.cpp │ │ │ ├── HUD.h │ │ │ ├── Particles.cpp │ │ │ ├── Particles.h │ │ │ ├── PathFinding.cpp │ │ │ ├── PathFinding.h │ │ │ ├── Stats.cpp │ │ │ └── WeaponPositions.h │ │ ├── Copier.es │ │ ├── Counter.es │ │ ├── CrateRider.es │ │ ├── Cyborg.es │ │ ├── CyborgBike.es │ │ ├── Damager.es │ │ ├── Debris.es │ │ ├── DestroyableArchitecture.es │ │ ├── Devil.es │ │ ├── DevilMarker.es │ │ ├── DevilProjectile.es │ │ ├── DoorController.es │ │ ├── Dragonman.es │ │ ├── EffectMarker.es │ │ ├── Effector.es │ │ ├── Elemental.es │ │ ├── EnemyBase.es │ │ ├── EnemyCounter.es │ │ ├── EnemyDive.es │ │ ├── EnemyFly.es │ │ ├── EnemyMarker.es │ │ ├── EnemyRunInto.es │ │ ├── EnemySpawner.es │ │ ├── Entities.vcxproj │ │ ├── Entities.vcxproj.filters │ │ ├── Entities.vcxproj.user │ │ ├── EnvironmentBase.es │ │ ├── EnvironmentMarker.es │ │ ├── Eruptor.es │ │ ├── Eyeman.es │ │ ├── Fish.es │ │ ├── Fishman.es │ │ ├── Flame.es │ │ ├── FogMarker.es │ │ ├── GhostBusterRay.es │ │ ├── Gizmo.es │ │ ├── Global.es │ │ ├── GradientMarker.es │ │ ├── GravityMarker.es │ │ ├── GravityRouter.es │ │ ├── HazeMarker.es │ │ ├── Headman.es │ │ ├── HealthItem.es │ │ ├── Huanman.es │ │ ├── Item.es │ │ ├── KeyItem.es │ │ ├── LastFileID.txt │ │ ├── Light.es │ │ ├── LightStyle.es │ │ ├── Lightning.es │ │ ├── Mamut.es │ │ ├── Mamutman.es │ │ ├── Mantaman.es │ │ ├── Marker.es │ │ ├── MessageHolder.es │ │ ├── MessageItem.es │ │ ├── MirrorMarker.es │ │ ├── ModelDestruction.es │ │ ├── ModelHolder.es │ │ ├── ModelHolder2.es │ │ ├── MovingBrush.es │ │ ├── MovingBrushMarker.es │ │ ├── MusicChanger.es │ │ ├── MusicHolder.es │ │ ├── NavigationMarker.es │ │ ├── ParticlesHolder.es │ │ ├── Pendulum.es │ │ ├── Pipebomb.es │ │ ├── Player.es │ │ ├── PlayerActionMarker.es │ │ ├── PlayerAnimator.es │ │ ├── PlayerMarker.es │ │ ├── PlayerView.es │ │ ├── PlayerWeapons.es │ │ ├── PlayerWeaponsEffects.es │ │ ├── PlayerWeaponsHD.es │ │ ├── PlayerWeapons_old.es │ │ ├── Projectile.es │ │ ├── PyramidSpaceShip.es │ │ ├── PyramidSpaceShipMarker.es │ │ ├── Reminder.es │ │ ├── RobotDriving.es │ │ ├── RobotFixed.es │ │ ├── RobotFlying.es │ │ ├── RollingStone.es │ │ ├── Scorpman.es │ │ ├── Ship.es │ │ ├── ShipMarker.es │ │ ├── SoundHolder.es │ │ ├── StdH │ │ │ ├── StdH.cpp │ │ │ └── StdH.h │ │ ├── StormController.es │ │ ├── Switch.es │ │ ├── Teleport.es │ │ ├── TouchField.es │ │ ├── Trigger.es │ │ ├── Twister.es │ │ ├── VoiceHolder.es │ │ ├── Walker.es │ │ ├── WatchPlayers.es │ │ ├── Watcher.es │ │ ├── Water.es │ │ ├── WeaponItem.es │ │ ├── Werebull.es │ │ ├── Woman.es │ │ ├── WorldBase.es │ │ ├── WorldLink.es │ │ └── WorldSettingsController.es │ ├── EntitiesMP │ │ ├── AirElemental.es │ │ ├── AirShockwave.es │ │ ├── AmmoItem.es │ │ ├── AmmoPack.es │ │ ├── AnimationChanger.es │ │ ├── AnimationHub.es │ │ ├── AreaMarker.es │ │ ├── ArmorItem.es │ │ ├── BackgroundViewer.es │ │ ├── BasicEffects.es │ │ ├── Beast.es │ │ ├── BigHead.es │ │ ├── BlendController.es │ │ ├── BloodSpray.es │ │ ├── Boneman.es │ │ ├── Bouncer.es │ │ ├── Bullet.es │ │ ├── Camera.es │ │ ├── CameraMarker.es │ │ ├── CannonBall.es │ │ ├── CannonRotating.es │ │ ├── CannonStatic.es │ │ ├── ChainsawFreak.es │ │ ├── Common │ │ │ ├── Common.cpp │ │ │ ├── Common.h │ │ │ ├── EmanatingParticles.cpp │ │ │ ├── EmanatingParticles.h │ │ │ ├── Flags.h │ │ │ ├── GameInterface.h │ │ │ ├── HUD.cpp │ │ │ ├── Particles.cpp │ │ │ ├── Particles.h │ │ │ ├── PathFinding.cpp │ │ │ ├── PathFinding.h │ │ │ ├── Stats.cpp │ │ │ └── WeaponPositions.h │ │ ├── Copier.es │ │ ├── Counter.es │ │ ├── CrateBus.es │ │ ├── CrateRider.es │ │ ├── CreditsHolder.es │ │ ├── Damager.es │ │ ├── Debris.es │ │ ├── DebugEntityStatesDisplay.es │ │ ├── Demon.es │ │ ├── DestroyableArchitecture.es │ │ ├── Devil.es │ │ ├── DevilMarker.es │ │ ├── DevilProjectile.es │ │ ├── DoorController.es │ │ ├── Dragonman.es │ │ ├── EffectMarker.es │ │ ├── Effector.es │ │ ├── Elemental.es │ │ ├── EnemyBase.es │ │ ├── EnemyCounter.es │ │ ├── EnemyDive.es │ │ ├── EnemyFly.es │ │ ├── EnemyMarker.es │ │ ├── EnemyRunInto.es │ │ ├── EnemySpawner.es │ │ ├── EntitiesMP.vcxproj │ │ ├── EntitiesMP.vcxproj.filters │ │ ├── EntitiesMP.vcxproj.user │ │ ├── EnvironmentBase.es │ │ ├── EnvironmentMarker.es │ │ ├── EnvironmentParticlesHolder.es │ │ ├── Eruptor.es │ │ ├── ExotechLarva.es │ │ ├── ExotechLarvaBattery.es │ │ ├── ExotechLarvaCharger.es │ │ ├── Eyeman.es │ │ ├── Fireworks.es │ │ ├── Fish.es │ │ ├── Flame.es │ │ ├── FogMarker.es │ │ ├── Gizmo.es │ │ ├── Global.es │ │ ├── GradientMarker.es │ │ ├── GravityMarker.es │ │ ├── GravityRouter.es │ │ ├── Grunt.es │ │ ├── GruntSka.es │ │ ├── Guffy.es │ │ ├── HazeMarker.es │ │ ├── Headman.es │ │ ├── HealthItem.es │ │ ├── HudPicHolder.es │ │ ├── Item.es │ │ ├── KeyItem.es │ │ ├── LarvaOffspring.es │ │ ├── LastFileID.txt │ │ ├── Light.es │ │ ├── Lightning.es │ │ ├── Marker.es │ │ ├── MessageHolder.es │ │ ├── MessageItem.es │ │ ├── MeteorShower.es │ │ ├── MirrorMarker.es │ │ ├── ModelDestruction.es │ │ ├── ModelHolder.es │ │ ├── ModelHolder2.es │ │ ├── ModelHolder3.es │ │ ├── MovingBrush.es │ │ ├── MovingBrushMarker.es │ │ ├── MusicChanger.es │ │ ├── MusicHolder.es │ │ ├── NavigationMarker.es │ │ ├── ParticlesHolder.es │ │ ├── Pendulum.es │ │ ├── PhotoAlbum.es │ │ ├── Pipebomb.es │ │ ├── Player.es │ │ ├── PlayerActionMarker.es │ │ ├── PlayerAnimator.es │ │ ├── PlayerMarker.es │ │ ├── PlayerView.es │ │ ├── PlayerWeapons.es │ │ ├── PlayerWeaponsEffects.es │ │ ├── PlayerWeaponsHD.es │ │ ├── PlayerWeapons_old.es │ │ ├── PowerUpItem.es │ │ ├── Projectile.es │ │ ├── PyramidSpaceShip.es │ │ ├── PyramidSpaceShipMarker.es │ │ ├── Reminder.es │ │ ├── RollingStone.es │ │ ├── Santa.es │ │ ├── Scorpman.es │ │ ├── ScrollHolder.es │ │ ├── SeriousBomb.es │ │ ├── Ship.es │ │ ├── ShipMarker.es │ │ ├── Shooter.es │ │ ├── SoundHolder.es │ │ ├── SpawnerProjectile.es │ │ ├── Spinner.es │ │ ├── StdH │ │ │ ├── StdH.cpp │ │ │ └── StdH.h │ │ ├── StormController.es │ │ ├── Summoner.es │ │ ├── SummonerMarker.es │ │ ├── Switch.es │ │ ├── TacticsChanger.es │ │ ├── TacticsHolder.es │ │ ├── Teleport.es │ │ ├── Terrain.es │ │ ├── TextFXHolder.es │ │ ├── TimeController.es │ │ ├── TouchField.es │ │ ├── Trigger.es │ │ ├── Twister.es │ │ ├── VoiceHolder.es │ │ ├── Walker.es │ │ ├── WatchPlayers.es │ │ ├── Watcher.es │ │ ├── Water.es │ │ ├── WeaponItem.es │ │ ├── Werebull.es │ │ ├── Woman.es │ │ ├── WorldBase.es │ │ ├── WorldLink.es │ │ └── WorldSettingsController.es │ ├── External │ │ ├── SDL2 │ │ │ ├── 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_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_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.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_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_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── libogg │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── ogg │ │ │ │ │ ├── config_types.h.in │ │ │ │ │ ├── ogg.h │ │ │ │ │ └── os_types.h │ │ │ ├── libogg_dynamic.vcxproj │ │ │ ├── libogg_dynamic.vcxproj.user │ │ │ ├── ogg.def │ │ │ └── src │ │ │ │ ├── bitwise.c │ │ │ │ └── framing.c │ │ └── libvorbis │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── include │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ │ ├── 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_dynamic.vcxproj │ │ │ ├── libvorbisfile_dynamic.vcxproj │ │ │ ├── vorbis.def │ │ │ ├── vorbisenc.def │ │ │ └── vorbisfile.def │ ├── GameGUIMP │ │ ├── ActionsListControl.cpp │ │ ├── ActionsListControl.h │ │ ├── AxisListCtrl.cpp │ │ ├── AxisListCtrl.h │ │ ├── ConsoleSymbolsCombo.cpp │ │ ├── ConsoleSymbolsCombo.h │ │ ├── DlgAudioQuality.cpp │ │ ├── DlgAudioQuality.h │ │ ├── DlgConsole.cpp │ │ ├── DlgConsole.h │ │ ├── DlgEditButtonAction.cpp │ │ ├── DlgEditButtonAction.h │ │ ├── DlgPlayerAppearance.cpp │ │ ├── DlgPlayerAppearance.h │ │ ├── DlgPlayerControls.cpp │ │ ├── DlgPlayerControls.h │ │ ├── DlgPlayerSettings.cpp │ │ ├── DlgPlayerSettings.h │ │ ├── DlgRenameControls.cpp │ │ ├── DlgRenameControls.h │ │ ├── DlgSelectPlayer.cpp │ │ ├── DlgSelectPlayer.h │ │ ├── DlgVideoQuality.cpp │ │ ├── DlgVideoQuality.h │ │ ├── EditConsole.cpp │ │ ├── EditConsole.h │ │ ├── GameGUI.cpp │ │ ├── GameGUI.h │ │ ├── GameGUI.rc │ │ ├── GameGUIMP.clw │ │ ├── GameGUIMP.vcxproj │ │ ├── GameGUIMP.vcxproj.filters │ │ ├── GameGUIMP.vcxproj.user │ │ ├── LocalPlayersList.cpp │ │ ├── LocalPlayersList.h │ │ ├── PressKeyEditControl.cpp │ │ ├── PressKeyEditControl.h │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── bmp00001.bmp │ │ ├── cursor_u.bmp │ │ ├── res │ │ │ └── Game.rc2 │ │ └── resource.h │ ├── GameMP │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── CompMessage.cpp │ │ ├── CompMessage.h │ │ ├── CompModels.cpp │ │ ├── Computer.cpp │ │ ├── Computer.h │ │ ├── Console.cpp │ │ ├── Controls.cpp │ │ ├── Data.h │ │ ├── Game.cpp │ │ ├── Game.h │ │ ├── Game.user │ │ ├── Game.vcxproj │ │ ├── Game.vcxproj.user │ │ ├── GameMP.vcxproj │ │ ├── GameMP.vcxproj.filters │ │ ├── GameMP.vcxproj.user │ │ ├── LCDDrawing.cpp │ │ ├── LCDDrawing.h │ │ ├── LoadingHook.cpp │ │ ├── Map.cpp │ │ ├── PlayerSettings.h │ │ ├── Render.h │ │ ├── SEColors.h │ │ ├── SessionProperties.cpp │ │ ├── SessionProperties.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ └── WEDInterface.cpp │ ├── LWSkaExporter │ │ ├── AnimExport.cpp │ │ ├── Base.h │ │ ├── CopyWeightMaps.cpp │ │ ├── LWSkaExporter.vcxproj │ │ ├── LWSkaExporter.vcxproj.filters │ │ ├── LWSkaExporter.vcxproj.user │ │ ├── Master.cpp │ │ ├── MeshExport.cpp │ │ ├── ModelerMeshExporter.cpp │ │ ├── SDK │ │ │ ├── lwanimlod.h │ │ │ ├── lwanimsav.h │ │ │ ├── lwchannel.h │ │ │ ├── lwcmdseq.h │ │ │ ├── lwcustobj.h │ │ │ ├── lwdialog.h │ │ │ ├── lwdisplay.h │ │ │ ├── lwdisplce.h │ │ │ ├── lwdyna.h │ │ │ ├── lwenvel.h │ │ │ ├── lwenviron.h │ │ │ ├── lwfilter.h │ │ │ ├── lwframbuf.h │ │ │ ├── lwgeneric.h │ │ │ ├── lwglobsrv.h │ │ │ ├── lwhandler.h │ │ │ ├── lwhost.h │ │ │ ├── lwimage.h │ │ │ ├── lwimageio.h │ │ │ ├── lwio.h │ │ │ ├── lwlaytool.h │ │ │ ├── lwmaster.h │ │ │ ├── lwmath.h │ │ │ ├── lwmeshedt.h │ │ │ ├── lwmeshes.h │ │ │ ├── lwmodeler.h │ │ │ ├── lwmodtool.h │ │ │ ├── lwmodule.h │ │ │ ├── lwmonitor.h │ │ │ ├── lwmotion.h │ │ │ ├── lwmtutil.h │ │ │ ├── lwobjimp.h │ │ │ ├── lwobjrep.h │ │ │ ├── lwpanel.h │ │ │ ├── lwpreview.h │ │ │ ├── lwprtcl.h │ │ │ ├── lwrender.h │ │ │ ├── lwscenecv.h │ │ │ ├── lwserver.h │ │ │ ├── lwshader.h │ │ │ ├── lwshelf.h │ │ │ ├── lwsurf.h │ │ │ ├── lwsurfed.h │ │ │ ├── lwtexture.h │ │ │ ├── lwtool.h │ │ │ ├── lwtxtr.h │ │ │ ├── lwtxtred.h │ │ │ ├── lwtypes.h │ │ │ ├── lwvolume.h │ │ │ ├── lwvparm.h │ │ │ └── lwxpanel.h │ │ ├── SectionsExport.cpp │ │ ├── SurfaceParameters.cpp │ │ ├── plugin.cpp │ │ ├── serv.def │ │ ├── servmain.c │ │ ├── shutdown.c │ │ ├── startup.c │ │ ├── username.c │ │ ├── vecmat.c │ │ └── vecmat.h │ ├── MakeFONT │ │ ├── MakeFONT.cpp │ │ ├── MakeFONT.vcxproj │ │ ├── MakeFONT.vcxproj.filters │ │ └── MakeFONT.vcxproj.user │ ├── Modeler │ │ ├── AnimComboBox.cpp │ │ ├── AnimComboBox.h │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── ChoosedColorButton.cpp │ │ ├── ChoosedColorButton.h │ │ ├── ColoredButton.cpp │ │ ├── ColoredButton.h │ │ ├── CtrlEditBoolean.cpp │ │ ├── CtrlEditBoolean.h │ │ ├── DlgAutoMipModeling.cpp │ │ ├── DlgAutoMipModeling.h │ │ ├── DlgChooseAnim.cpp │ │ ├── DlgChooseAnim.h │ │ ├── DlgCreateReflectionTexture.cpp │ │ ├── DlgCreateReflectionTexture.h │ │ ├── DlgCreateSpecularTexture.cpp │ │ ├── DlgCreateSpecularTexture.h │ │ ├── DlgExportForSkinning.cpp │ │ ├── DlgExportForSkinning.h │ │ ├── DlgInfoFrame.cpp │ │ ├── DlgInfoFrame.h │ │ ├── DlgInfoPgAnim.cpp │ │ ├── DlgInfoPgAnim.h │ │ ├── DlgInfoPgGlobal.cpp │ │ ├── DlgInfoPgMip.cpp │ │ ├── DlgInfoPgMip.h │ │ ├── DlgInfoPgNone.cpp │ │ ├── DlgInfoPgNone.h │ │ ├── DlgInfoPgPos.cpp │ │ ├── DlgInfoPgPos.h │ │ ├── DlgInfoPgRendering.cpp │ │ ├── DlgInfoPgRendering.h │ │ ├── DlgInfoSheet.cpp │ │ ├── DlgInfoSheet.h │ │ ├── DlgMarkLinkedSurfaces.cpp │ │ ├── DlgMarkLinkedSurfaces.h │ │ ├── DlgMultiplyMapping.cpp │ │ ├── DlgMultiplyMapping.h │ │ ├── DlgNewProgress.cpp │ │ ├── DlgNewProgress.h │ │ ├── DlgNumericAlpha.cpp │ │ ├── DlgNumericAlpha.h │ │ ├── DlgPgCollision.cpp │ │ ├── DlgPgCollision.h │ │ ├── DlgPgInfoAttachingPlacement.cpp │ │ ├── DlgPgInfoAttachingPlacement.h │ │ ├── DlgPgInfoAttachingSound.cpp │ │ ├── DlgPgInfoAttachingSound.h │ │ ├── DlgPleaseWait.cpp │ │ ├── DlgPleaseWait.h │ │ ├── DlgPreferences.cpp │ │ ├── DlgPreferences.h │ │ ├── LinkedSurfaceList.cpp │ │ ├── LinkedSurfaceList.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── MakeHelp.bat │ │ ├── Modeler.aps │ │ ├── Modeler.clw │ │ ├── Modeler.cpp │ │ ├── Modeler.h │ │ ├── Modeler.rc │ │ ├── Modeler.vcxproj │ │ ├── Modeler.vcxproj.filters │ │ ├── Modeler.vcxproj.user │ │ ├── ModelerDoc.cpp │ │ ├── ModelerDoc.h │ │ ├── ModelerView.cpp │ │ ├── ModelerView.h │ │ ├── PaletteButton.cpp │ │ ├── PaletteButton.h │ │ ├── PaletteDialog.cpp │ │ ├── PaletteDialog.h │ │ ├── PatchPalette.cpp │ │ ├── PatchPalette.h │ │ ├── PatchPaletteButton.cpp │ │ ├── PatchPaletteButton.h │ │ ├── ReadMe.txt │ │ ├── ScriptDoc.cpp │ │ ├── ScriptDoc.h │ │ ├── ScriptView.cpp │ │ ├── ScriptView.h │ │ ├── SkyFloat.cpp │ │ ├── SkyFloat.h │ │ ├── StainsComboBox.cpp │ │ ├── StainsComboBox.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TextureComboBox.cpp │ │ ├── TextureComboBox.h │ │ ├── dlginfopgglobal.h │ │ ├── hlp │ │ │ ├── AfxCore.rtf │ │ │ ├── AppExit.bmp │ │ │ ├── Bullet.bmp │ │ │ ├── CurArw2.bmp │ │ │ ├── CurArw4.bmp │ │ │ ├── CurHelp.bmp │ │ │ ├── EditCopy.bmp │ │ │ ├── EditCut.bmp │ │ │ ├── EditPast.bmp │ │ │ ├── EditUndo.bmp │ │ │ ├── FileNew.bmp │ │ │ ├── FileOpen.bmp │ │ │ ├── FilePrnt.bmp │ │ │ ├── FileSave.bmp │ │ │ ├── HlpSBar.bmp │ │ │ ├── HlpTBar.bmp │ │ │ ├── Modeler.cnt │ │ │ ├── Modeler.hm │ │ │ ├── Modeler.hpj │ │ │ ├── Modeler.ph │ │ │ ├── RecFirst.bmp │ │ │ ├── RecLast.bmp │ │ │ ├── RecNext.bmp │ │ │ ├── RecPrev.bmp │ │ │ ├── ScMenu.bmp │ │ │ ├── Scmax.bmp │ │ │ └── Scmin.bmp │ │ ├── res │ │ │ ├── Modeler.ico │ │ │ ├── Modeler.rc2 │ │ │ ├── ModelerDoc.ico │ │ │ ├── Toolbar.bmp │ │ │ ├── animcont.bmp │ │ │ ├── bmp00001.bmp │ │ │ ├── bmp00002.bmp │ │ │ ├── bmp00003.bmp │ │ │ ├── bmp00004.bmp │ │ │ ├── icon1.ico │ │ │ ├── idr_scri.ico │ │ │ ├── mipandli.bmp │ │ │ ├── nullcurs.cur │ │ │ ├── pick.ico │ │ │ ├── renderco.bmp │ │ │ ├── stain_ac.ico │ │ │ ├── stain_in.ico │ │ │ ├── stainsco.bmp │ │ │ ├── texturec.bmp │ │ │ └── toolbar1.bmp │ │ └── resource.h │ ├── Models │ │ ├── Ages │ │ │ ├── Egypt │ │ │ │ ├── Architecture │ │ │ │ │ ├── Column07 │ │ │ │ │ │ ├── Column.h │ │ │ │ │ │ └── Column.ini │ │ │ │ │ ├── Column08 │ │ │ │ │ │ ├── Column.h │ │ │ │ │ │ └── Column.ini │ │ │ │ │ ├── Columns02 │ │ │ │ │ │ ├── Columns.h │ │ │ │ │ │ └── Columns.ini │ │ │ │ │ ├── Fence01 │ │ │ │ │ │ ├── Fence.h │ │ │ │ │ │ └── Fence.ini │ │ │ │ │ ├── SmoothGate01 │ │ │ │ │ │ ├── SmoothGate.h │ │ │ │ │ │ └── SmoothGate.ini │ │ │ │ │ └── Switch01 │ │ │ │ │ │ ├── Handle.h │ │ │ │ │ │ ├── Handle.ini │ │ │ │ │ │ ├── Switch.h │ │ │ │ │ │ └── Switch.ini │ │ │ │ ├── Gods │ │ │ │ │ ├── Amon │ │ │ │ │ │ ├── Amon.h │ │ │ │ │ │ ├── Amon.ini │ │ │ │ │ │ ├── AmonGold.h │ │ │ │ │ │ ├── AmonGold.ini │ │ │ │ │ │ ├── AmonReflections.h │ │ │ │ │ │ └── AmonReflections.ini │ │ │ │ │ ├── Amonorg │ │ │ │ │ │ ├── Amon.h │ │ │ │ │ │ ├── Amon.ini │ │ │ │ │ │ ├── AmonGold.h │ │ │ │ │ │ ├── AmonGold.ini │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ └── Destroyed.ini │ │ │ │ │ ├── Nefthis │ │ │ │ │ │ ├── Nefthis.h │ │ │ │ │ │ └── Nefthis.ini │ │ │ │ │ ├── Neith │ │ │ │ │ │ ├── Neith.h │ │ │ │ │ │ └── Neith.ini │ │ │ │ │ ├── Osiris │ │ │ │ │ │ ├── Osiris.h │ │ │ │ │ │ └── Osiris.ini │ │ │ │ │ ├── Ptah │ │ │ │ │ │ ├── Ptah.h │ │ │ │ │ │ └── Ptah.ini │ │ │ │ │ ├── Sekhmet │ │ │ │ │ │ ├── Sekhmet.h │ │ │ │ │ │ └── Sekhmet.ini │ │ │ │ │ ├── Toth │ │ │ │ │ │ ├── Toth.h │ │ │ │ │ │ └── Toth.ini │ │ │ │ │ └── TothMonkey │ │ │ │ │ │ ├── TothMonkey.h │ │ │ │ │ │ └── TothMonkey.ini │ │ │ │ ├── Objects │ │ │ │ │ └── Horns03 │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ ├── Destroyed.ini │ │ │ │ │ │ ├── Horns.h │ │ │ │ │ │ └── Horns.ini │ │ │ │ ├── Statues │ │ │ │ │ ├── BirdStatue │ │ │ │ │ │ ├── BirdStatue.h │ │ │ │ │ │ └── BirdStatue.ini │ │ │ │ │ ├── Cat │ │ │ │ │ │ ├── Cat.h │ │ │ │ │ │ └── Cat.ini │ │ │ │ │ ├── Jackal │ │ │ │ │ │ ├── Jackal.h │ │ │ │ │ │ └── Jackal.ini │ │ │ │ │ ├── Jackal01 │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ ├── Destroyed.ini │ │ │ │ │ │ ├── Jackal.h │ │ │ │ │ │ └── Jackal.ini │ │ │ │ │ ├── Jaguar02 │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ ├── Destroyed.ini │ │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Neferthiti │ │ │ │ │ │ ├── Nefer.h │ │ │ │ │ │ └── Nefer.ini │ │ │ │ │ ├── Sphinx03 │ │ │ │ │ │ ├── Sphinx.h │ │ │ │ │ │ └── Sphinx.ini │ │ │ │ │ └── Sphinx04 │ │ │ │ │ │ ├── Destroyed.h │ │ │ │ │ │ ├── Destroyed.ini │ │ │ │ │ │ ├── Sphinx.h │ │ │ │ │ │ └── Sphinx.ini │ │ │ │ └── Traps │ │ │ │ │ ├── RollingStone │ │ │ │ │ ├── RollingStone.h │ │ │ │ │ ├── RollingStone.ini │ │ │ │ │ ├── Stone.h │ │ │ │ │ └── Stone.ini │ │ │ │ │ ├── RollingStone_old │ │ │ │ │ ├── RollingStone.h │ │ │ │ │ └── RollingStone.ini │ │ │ │ │ ├── SphinxSplited │ │ │ │ │ ├── Sphinx.h │ │ │ │ │ ├── Sphinx.ini │ │ │ │ │ ├── SphinxGlass.h │ │ │ │ │ └── SphinxGlass.ini │ │ │ │ │ └── Spikes01 │ │ │ │ │ ├── Spikes.h │ │ │ │ │ └── Spikes.ini │ │ │ └── Future │ │ │ │ ├── LightSources │ │ │ │ ├── LightSource05 │ │ │ │ │ ├── LightSource.h │ │ │ │ │ └── LightSource.ini │ │ │ │ ├── LightSource07 │ │ │ │ │ ├── LightSource.h │ │ │ │ │ └── LightSource.ini │ │ │ │ ├── LightSource08 │ │ │ │ │ ├── LightSource.h │ │ │ │ │ └── LightSource.ini │ │ │ │ └── LightSource09 │ │ │ │ │ ├── LightSource.h │ │ │ │ │ └── LightSource.ini │ │ │ │ └── Space │ │ │ │ └── Galaxy01 │ │ │ │ ├── Galaxy.h │ │ │ │ └── Galaxy.ini │ │ ├── Computer │ │ │ ├── Floor.h │ │ │ └── Floor.ini │ │ ├── CutSequences │ │ │ ├── Altar │ │ │ │ ├── Altar.h │ │ │ │ └── Altar.ini │ │ │ ├── AltarKarnakApproach │ │ │ │ ├── Altar.h │ │ │ │ └── Altar.ini │ │ │ ├── AltarPicker │ │ │ │ ├── AltarPicker.h │ │ │ │ └── AltarPicker.ini │ │ │ ├── Bridge │ │ │ │ ├── Bridge.h │ │ │ │ ├── Bridge.ini │ │ │ │ ├── BridgeSupport.h │ │ │ │ └── BridgeSupport.ini │ │ │ ├── Counter │ │ │ │ ├── Digit.h │ │ │ │ └── Digit.ini │ │ │ ├── Crate │ │ │ │ ├── Crate.h │ │ │ │ ├── Crate.ini │ │ │ │ ├── CrateLowPoly.h │ │ │ │ └── CrateLowPoly.ini │ │ │ ├── CrateRider │ │ │ │ ├── Crate.h │ │ │ │ └── Crate.ini │ │ │ ├── CroteamLogo │ │ │ │ ├── CroteamLogo.h │ │ │ │ └── CroteamLogo.ini │ │ │ ├── Earth │ │ │ │ ├── Earth.h │ │ │ │ └── Earth.ini │ │ │ ├── EndTitle │ │ │ │ ├── ToBeContinued.h │ │ │ │ └── ToBeContinued.ini │ │ │ ├── Lamp01 │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── Lamp02 │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── Lamp03 │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── Lamp04 │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── Lamp05 │ │ │ │ ├── Glow.h │ │ │ │ ├── Glow.ini │ │ │ │ ├── Light.h │ │ │ │ └── Light.ini │ │ │ ├── Lamp06 │ │ │ │ ├── Glow.h │ │ │ │ ├── Glow.ini │ │ │ │ ├── Lamp.h │ │ │ │ └── Lamp.ini │ │ │ ├── LogoOdi │ │ │ │ ├── LogoOdi.h │ │ │ │ └── LogoOdi.ini │ │ │ ├── Luxor │ │ │ │ ├── Antenna.h │ │ │ │ └── Antenna.ini │ │ │ ├── Obelisk │ │ │ │ ├── MainPart.h │ │ │ │ ├── MainPart.ini │ │ │ │ ├── Part01.h │ │ │ │ ├── Part01.ini │ │ │ │ ├── Part02.h │ │ │ │ ├── Part02.ini │ │ │ │ ├── Part03.h │ │ │ │ ├── Part03.ini │ │ │ │ ├── Part04.h │ │ │ │ ├── Part04.ini │ │ │ │ ├── Part05.h │ │ │ │ ├── Part05.ini │ │ │ │ ├── Part06.h │ │ │ │ ├── Part06.ini │ │ │ │ ├── Part07.h │ │ │ │ ├── Part07.ini │ │ │ │ ├── Part08.h │ │ │ │ ├── Part08.ini │ │ │ │ ├── Part09.h │ │ │ │ └── Part09.ini │ │ │ ├── Portal │ │ │ │ ├── Base.h │ │ │ │ ├── Base.ini │ │ │ │ ├── LightningHolder.h │ │ │ │ ├── LightningHolder.ini │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── Pylon │ │ │ │ ├── MainPart.h │ │ │ │ ├── MainPart.ini │ │ │ │ ├── Part01.h │ │ │ │ ├── Part01.ini │ │ │ │ ├── Part02.h │ │ │ │ ├── Part02.ini │ │ │ │ ├── Part03.h │ │ │ │ ├── Part03.ini │ │ │ │ ├── Part04.h │ │ │ │ ├── Part04.ini │ │ │ │ ├── Part05.h │ │ │ │ ├── Part05.ini │ │ │ │ ├── Part06.h │ │ │ │ ├── Part06.ini │ │ │ │ ├── Part07.h │ │ │ │ ├── Part07.ini │ │ │ │ ├── Part08.h │ │ │ │ ├── Part08.ini │ │ │ │ ├── Part09.h │ │ │ │ └── Part09.ini │ │ │ ├── Pyramid │ │ │ │ ├── Lightning.h │ │ │ │ ├── Lightning.ini │ │ │ │ ├── Ring.h │ │ │ │ └── Ring.ini │ │ │ ├── Screens │ │ │ │ ├── Frame.h │ │ │ │ ├── Frame.ini │ │ │ │ ├── Screen.h │ │ │ │ └── Screen.ini │ │ │ ├── SeriousSamLogo │ │ │ │ ├── SeriousSam.h │ │ │ │ └── SeriousSam.ini │ │ │ ├── SeriousSamSign │ │ │ │ ├── SeriousSamSign.h │ │ │ │ └── SeriousSamSign.ini │ │ │ └── SpaceShip │ │ │ │ ├── BeamMachine.h │ │ │ │ ├── BeamMachine.ini │ │ │ │ ├── BeamMachineRim.h │ │ │ │ ├── BeamMachineRim.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── BottomFlare.h │ │ │ │ ├── BottomFlare.ini │ │ │ │ ├── Door.h │ │ │ │ ├── Door.ini │ │ │ │ ├── FillIn.h │ │ │ │ ├── FillIn.ini │ │ │ │ ├── LightBeam.h │ │ │ │ ├── LightBeam.ini │ │ │ │ ├── PowerRing.h │ │ │ │ ├── PowerRing.ini │ │ │ │ ├── SpaceShip.h │ │ │ │ └── SpaceShip.ini │ │ ├── Editor │ │ │ ├── AmbientLight.h │ │ │ ├── AmbientLight.ini │ │ │ ├── AngleVector.h │ │ │ ├── AngleVector.ini │ │ │ ├── AnimationChanger.h │ │ │ ├── AnimationChanger.ini │ │ │ ├── Axis.h │ │ │ ├── Axis.ini │ │ │ ├── BlendController.h │ │ │ ├── BlendController.ini │ │ │ ├── BoundingBox.h │ │ │ ├── BoundingBox.ini │ │ │ ├── Camera.h │ │ │ ├── Camera.ini │ │ │ ├── CameraMarker.h │ │ │ ├── CameraMarker.ini │ │ │ ├── CollisionBox.h │ │ │ ├── CollisionBox.ini │ │ │ ├── Copier.h │ │ │ ├── Copier.ini │ │ │ ├── Damager.h │ │ │ ├── Damager.ini │ │ │ ├── DoorController.h │ │ │ ├── DoorController.ini │ │ │ ├── EmptyBrush.h │ │ │ ├── EmptyBrush.ini │ │ │ ├── EnemyMarker.h │ │ │ ├── EnemyMarker.ini │ │ │ ├── EnemySpawner.h │ │ │ ├── EnemySpawner.ini │ │ │ ├── EntityMarker.h │ │ │ ├── EntityMarker.ini │ │ │ ├── EnvironmentMarker.h │ │ │ ├── EnvironmentMarker.ini │ │ │ ├── Floor.h │ │ │ ├── Floor.ini │ │ │ ├── Fog.h │ │ │ ├── Fog.ini │ │ │ ├── GradientMarker.h │ │ │ ├── GradientMarker.ini │ │ │ ├── GravityMarker.h │ │ │ ├── GravityMarker.ini │ │ │ ├── GravityRouter.h │ │ │ ├── GravityRouter.ini │ │ │ ├── Guilotine.h │ │ │ ├── Guilotine.ini │ │ │ ├── Haze.h │ │ │ ├── Haze.ini │ │ │ ├── Lamp.h │ │ │ ├── Lamp.ini │ │ │ ├── LightSource.h │ │ │ ├── LightSource.ini │ │ │ ├── LightStyle.h │ │ │ ├── LightStyle.ini │ │ │ ├── Lightning.h │ │ │ ├── Lightning.ini │ │ │ ├── MessageHolder.h │ │ │ ├── MessageHolder.ini │ │ │ ├── ModelDestruction.h │ │ │ ├── ModelDestruction.ini │ │ │ ├── MovingBrushMarker.h │ │ │ ├── MovingBrushMarker.ini │ │ │ ├── MusicChanger.h │ │ │ ├── MusicChanger.ini │ │ │ ├── MusicHolder.h │ │ │ ├── MusicHolder.ini │ │ │ ├── NavigationMarker.h │ │ │ ├── NavigationMarker.ini │ │ │ ├── PlayerActionMarker.h │ │ │ ├── PlayerActionMarker.ini │ │ │ ├── PlayerStart.h │ │ │ ├── PlayerStart.ini │ │ │ ├── PointLight.h │ │ │ ├── PointLight.ini │ │ │ ├── PortalMarker.h │ │ │ ├── PortalMarker.ini │ │ │ ├── RangeSphere.h │ │ │ ├── RangeSphere.ini │ │ │ ├── ShipMarker.h │ │ │ ├── ShipMarker.ini │ │ │ ├── SoundHolder.h │ │ │ ├── SoundHolder.ini │ │ │ ├── SoundHolder02.h │ │ │ ├── SoundHolder02.ini │ │ │ ├── SpotLight.h │ │ │ ├── SpotLight.ini │ │ │ ├── StormController.h │ │ │ ├── StormController.ini │ │ │ ├── Teapot.h │ │ │ ├── Teapot.ini │ │ │ ├── Teleport.h │ │ │ ├── Teleport.ini │ │ │ ├── ThunderController.h │ │ │ ├── ThunderController.ini │ │ │ ├── Trigger.h │ │ │ ├── Trigger.ini │ │ │ ├── Vector.h │ │ │ ├── Vector.ini │ │ │ ├── VoiceHolder.h │ │ │ ├── VoiceHolder.ini │ │ │ ├── WarpEntrance.h │ │ │ ├── WarpEntrance.ini │ │ │ ├── WarpExit.h │ │ │ ├── WarpExit.ini │ │ │ ├── WatchPlayers.h │ │ │ ├── WatchPlayers.ini │ │ │ ├── WorldLink.h │ │ │ ├── WorldLink.ini │ │ │ ├── WorldSettingsController.h │ │ │ └── WorldSettingsController.ini │ │ ├── Effects │ │ │ ├── BigFire │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── Blood01 │ │ │ │ └── objects │ │ │ │ │ ├── Blood01.h │ │ │ │ │ └── Blood01.ini │ │ │ ├── BloodCloud │ │ │ │ ├── BloodCloud.h │ │ │ │ └── BloodCloud.ini │ │ │ ├── BloodExplosion01 │ │ │ │ ├── BloodExplosion.h │ │ │ │ └── BloodExplosion.ini │ │ │ ├── BloodOnTheWall01 │ │ │ │ ├── Blood.h │ │ │ │ └── Blood.ini │ │ │ ├── BulletOnTheWall │ │ │ │ ├── Bullet.h │ │ │ │ └── Bullet.ini │ │ │ ├── BulletParticles │ │ │ │ ├── BulletParticles.h │ │ │ │ └── BulletParticles.ini │ │ │ ├── BulletTrail │ │ │ │ ├── BulletTrail.h │ │ │ │ └── BulletTrail.ini │ │ │ ├── BurnedStainOnTheWall │ │ │ │ ├── BurnedStainOnTheWall.h │ │ │ │ └── BurnedStainOnTheWall.ini │ │ │ ├── Debris │ │ │ │ ├── Body01 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Body02 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Body03 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Body04 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Body05 │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ │ ├── Brain01 │ │ │ │ │ ├── Brain.h │ │ │ │ │ └── Brain.ini │ │ │ │ ├── Column01 │ │ │ │ │ ├── Column01.h │ │ │ │ │ ├── Column01.ini │ │ │ │ │ ├── ColumnAll.h │ │ │ │ │ ├── ColumnAll.ini │ │ │ │ │ ├── Part01.h │ │ │ │ │ ├── Part01.ini │ │ │ │ │ ├── Part02.h │ │ │ │ │ ├── Part02.ini │ │ │ │ │ ├── Part03.h │ │ │ │ │ ├── Part03.ini │ │ │ │ │ ├── Part04.h │ │ │ │ │ ├── Part04.ini │ │ │ │ │ ├── Part05.h │ │ │ │ │ ├── Part05.ini │ │ │ │ │ ├── Part06.h │ │ │ │ │ ├── Part06.ini │ │ │ │ │ ├── Part07.h │ │ │ │ │ ├── Part07.ini │ │ │ │ │ ├── Part08.h │ │ │ │ │ ├── Part08.ini │ │ │ │ │ ├── Part09.h │ │ │ │ │ ├── Part09.ini │ │ │ │ │ ├── Part10.h │ │ │ │ │ ├── Part10.ini │ │ │ │ │ ├── Part11.h │ │ │ │ │ └── Part11.ini │ │ │ │ ├── Column02 │ │ │ │ │ ├── Column.h │ │ │ │ │ ├── Column.ini │ │ │ │ │ ├── Part01.h │ │ │ │ │ ├── Part01.ini │ │ │ │ │ ├── Part02.h │ │ │ │ │ ├── Part02.ini │ │ │ │ │ ├── Part03.h │ │ │ │ │ ├── Part03.ini │ │ │ │ │ ├── Part04.h │ │ │ │ │ ├── Part04.ini │ │ │ │ │ ├── Part05.h │ │ │ │ │ ├── Part05.ini │ │ │ │ │ ├── Part06.h │ │ │ │ │ ├── Part06.ini │ │ │ │ │ ├── Part07.h │ │ │ │ │ ├── Part07.ini │ │ │ │ │ ├── Part08.h │ │ │ │ │ ├── Part08.ini │ │ │ │ │ ├── Part09.h │ │ │ │ │ ├── Part09.ini │ │ │ │ │ ├── Part10.h │ │ │ │ │ └── Part10.ini │ │ │ │ ├── Flesh │ │ │ │ │ ├── Flesh.h │ │ │ │ │ └── Flesh.ini │ │ │ │ ├── Fruits │ │ │ │ │ ├── Apple.h │ │ │ │ │ ├── Apple.ini │ │ │ │ │ ├── Banana.h │ │ │ │ │ ├── Banana.ini │ │ │ │ │ ├── CheeseBurger.h │ │ │ │ │ ├── CheeseBurger.ini │ │ │ │ │ ├── LollyPop.h │ │ │ │ │ ├── LollyPop.ini │ │ │ │ │ ├── Orange.h │ │ │ │ │ ├── Orange.ini │ │ │ │ │ ├── Pear.h │ │ │ │ │ └── Pear.ini │ │ │ │ ├── Lava01 │ │ │ │ │ ├── Lava.h │ │ │ │ │ ├── Lava.ini │ │ │ │ │ ├── LavaFlare.h │ │ │ │ │ └── LavaFlare.ini │ │ │ │ ├── Skull01 │ │ │ │ │ ├── Skull.h │ │ │ │ │ └── Skull.ini │ │ │ │ ├── Skull01_org │ │ │ │ │ ├── Skull.h │ │ │ │ │ └── Skull.ini │ │ │ │ ├── Stone │ │ │ │ │ ├── Stone.h │ │ │ │ │ └── Stone.ini │ │ │ │ └── Wood01 │ │ │ │ │ ├── Wood.h │ │ │ │ │ └── Wood.ini │ │ │ ├── Explosion01 │ │ │ │ ├── Explosion01.h │ │ │ │ └── Explosion01.ini │ │ │ ├── Explosion02 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion03 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion04 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion05 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion06 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion07 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion08 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion09 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion10 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion11 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion12 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion13 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion14 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion15 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion16 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion17 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── Explosion18 │ │ │ │ ├── Explosion.h │ │ │ │ └── Explosion.ini │ │ │ ├── ExplosionGrenade │ │ │ │ ├── ExplosionGrenade.h │ │ │ │ ├── ExplosionGrenade.ini │ │ │ │ ├── ExplosionGrenade3D.h │ │ │ │ └── ExplosionGrenade3D.ini │ │ │ ├── ExplosionParticles │ │ │ │ ├── Particles.h │ │ │ │ ├── Particles.ini │ │ │ │ ├── Particles3D.h │ │ │ │ └── Particles3D.ini │ │ │ ├── ExplosionRocket │ │ │ │ ├── ExplosionRocket.h │ │ │ │ ├── ExplosionRocket.ini │ │ │ │ ├── ExplosionRocket3D.h │ │ │ │ └── ExplosionRocket3D.ini │ │ │ ├── Fire01 │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── Fire02 │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── Fire03 │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── Flare01 │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ │ ├── Flare02 │ │ │ │ ├── Flaire.h │ │ │ │ └── Flaire.ini │ │ │ ├── Flare03 │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ │ ├── Flares1m │ │ │ │ ├── Flaire.h │ │ │ │ └── Flaire.ini │ │ │ ├── Holder2x4 │ │ │ │ ├── Holder.h │ │ │ │ ├── Holder.ini │ │ │ │ ├── HolderAngle.h │ │ │ │ ├── HolderAngle.ini │ │ │ │ ├── HolderOneSide.h │ │ │ │ └── HolderOneSide.ini │ │ │ ├── LavaRock01 │ │ │ │ ├── LavaRock.h │ │ │ │ ├── LavaRock.ini │ │ │ │ ├── LavaRock02.h │ │ │ │ ├── LavaRock02.ini │ │ │ │ ├── LavaRock03.h │ │ │ │ └── LavaRock03.ini │ │ │ ├── LightBeam01 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ │ ├── LightBeam02 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ │ ├── LightBeam03 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ │ ├── Rail │ │ │ │ ├── rail.h │ │ │ │ ├── rail.ini │ │ │ │ ├── railend.h │ │ │ │ ├── railend.ini │ │ │ │ ├── railstart.h │ │ │ │ └── railstart.ini │ │ │ ├── RotatingFlare01 │ │ │ │ ├── RotatingFlare.h │ │ │ │ └── RotatingFlare.ini │ │ │ ├── ShockWave │ │ │ │ ├── Ring.h │ │ │ │ ├── Ring.ini │ │ │ │ ├── Ring2.h │ │ │ │ └── Ring2.ini │ │ │ ├── ShockWave01 │ │ │ │ ├── ShockWave.h │ │ │ │ └── ShockWave.ini │ │ │ ├── ShockWaveGreen │ │ │ │ ├── ShockWaveGreen.h │ │ │ │ └── ShockWaveGreen.ini │ │ │ ├── Smoke01 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke02 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke03 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke04 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke05 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── Smoke06 │ │ │ │ ├── Smoke.h │ │ │ │ └── Smoke.ini │ │ │ ├── SmokeLine │ │ │ │ ├── SmokeLine.h │ │ │ │ └── SmokeLine.ini │ │ │ ├── SmokeLine01 │ │ │ │ ├── SmokeLine.h │ │ │ │ └── SmokeLine.ini │ │ │ ├── SmokeLine02 │ │ │ │ ├── SmokeLine.h │ │ │ │ └── SmokeLine.ini │ │ │ ├── Sphere01 │ │ │ │ ├── Sphere.h │ │ │ │ └── Sphere.ini │ │ │ ├── StainOnTheWall │ │ │ │ ├── Stain.h │ │ │ │ └── Stain.ini │ │ │ ├── Teleport01 │ │ │ │ ├── Teleport.h │ │ │ │ └── Teleport.ini │ │ │ ├── Water01 │ │ │ │ ├── Water.h │ │ │ │ └── Water.ini │ │ │ ├── WaterFall01 │ │ │ │ ├── WaterFall.h │ │ │ │ └── WaterFall.ini │ │ │ ├── WaterFoam01 │ │ │ │ ├── Puff.h │ │ │ │ └── Puff.ini │ │ │ ├── WaterFoam02 │ │ │ │ ├── Foam.h │ │ │ │ └── Foam.ini │ │ │ ├── WaterFoam03 │ │ │ │ ├── Foam.h │ │ │ │ └── Foam.ini │ │ │ └── Weapons │ │ │ │ ├── Flare01 │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ │ │ └── Flare02 │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ ├── ElsaPromo │ │ │ ├── CurvedSurfaces.h │ │ │ ├── CurvedSurfaces.ini │ │ │ ├── ElsaLogoLow.h │ │ │ ├── ElsaLogoLow.ini │ │ │ └── Temple │ │ │ │ ├── DoorLeft.h │ │ │ │ ├── DoorLeft.ini │ │ │ │ ├── DoorRight.h │ │ │ │ └── DoorRight.ini │ │ ├── Enemies │ │ │ ├── Beast │ │ │ │ ├── Beast.h │ │ │ │ ├── Beast.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── ProjectileOld │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── ProjectileOld2 │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ └── ProjectileOrg │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── Beast_ │ │ │ │ ├── Beast.h │ │ │ │ ├── Beast.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── Boneman │ │ │ │ ├── Boneman.h │ │ │ │ ├── Boneman.ini │ │ │ │ ├── Debris │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Body.ini │ │ │ │ │ ├── Hand.h │ │ │ │ │ ├── Hand.ini │ │ │ │ │ ├── Legs.h │ │ │ │ │ └── Legs.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── Catman │ │ │ │ ├── CatMan.h │ │ │ │ ├── CatMan.ini │ │ │ │ ├── Fire │ │ │ │ │ ├── CatmanFire.h │ │ │ │ │ └── CatmanFire.ini │ │ │ │ ├── FireOld │ │ │ │ │ ├── CatmanFire.h │ │ │ │ │ └── CatmanFire.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── ChainSawFreak │ │ │ │ ├── Freak.h │ │ │ │ ├── Freak.ini │ │ │ │ ├── Saw.h │ │ │ │ └── Saw.ini │ │ │ ├── Cyborg │ │ │ │ ├── AssHole.h │ │ │ │ ├── AssHole.ini │ │ │ │ ├── Bike.h │ │ │ │ ├── Bike.ini │ │ │ │ ├── Cyborg.h │ │ │ │ ├── Cyborg.ini │ │ │ │ ├── CyborgONEPART.h │ │ │ │ ├── CyborgONEPART.ini │ │ │ │ ├── Foot.h │ │ │ │ ├── Foot.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── LeftLowerArm.h │ │ │ │ ├── LeftLowerArm.ini │ │ │ │ ├── LeftLowerLeg.h │ │ │ │ ├── LeftLowerLeg.ini │ │ │ │ ├── LeftUpperArm.h │ │ │ │ ├── LeftUpperArm.ini │ │ │ │ ├── LeftUpperLeg.h │ │ │ │ ├── LeftUpperLeg.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectile.ini │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ ├── LaserProjectileGlow01.ini │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── RightLowerArm.h │ │ │ │ ├── RightLowerArm.ini │ │ │ │ ├── RightLowerLeg.h │ │ │ │ ├── RightLowerLeg.ini │ │ │ │ ├── RightUpperArm.h │ │ │ │ ├── RightUpperArm.ini │ │ │ │ ├── RightUpperLeg.h │ │ │ │ ├── RightUpperLeg.ini │ │ │ │ ├── Termi+rifle.h │ │ │ │ ├── Termi+rifle.ini │ │ │ │ ├── Torso.h │ │ │ │ └── Torso.ini │ │ │ ├── Devil │ │ │ │ ├── Devil.h │ │ │ │ ├── Devil.ini │ │ │ │ ├── DevilHead.h │ │ │ │ ├── DevilHead.ini │ │ │ │ ├── DevilTest.h │ │ │ │ ├── DevilTest.ini │ │ │ │ ├── GoatHead.h │ │ │ │ ├── GoatHead.ini │ │ │ │ ├── SkullHead.h │ │ │ │ ├── SkullHead.ini │ │ │ │ └── Weapons │ │ │ │ │ ├── ElectricityFlare.h │ │ │ │ │ ├── ElectricityFlare.ini │ │ │ │ │ ├── ElectricityGun.h │ │ │ │ │ ├── ElectricityGun.ini │ │ │ │ │ ├── Laser.h │ │ │ │ │ ├── Laser.ini │ │ │ │ │ ├── ProjectileGun.h │ │ │ │ │ ├── ProjectileGun.ini │ │ │ │ │ ├── RocketLauncher.h │ │ │ │ │ └── RocketLauncher.ini │ │ │ ├── Devil_old │ │ │ │ ├── Flare.h │ │ │ │ ├── Flare.ini │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── MiniGunItem.ini │ │ │ │ ├── Minigun.h │ │ │ │ ├── Minigun.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── devil.h │ │ │ │ ├── devil.ini │ │ │ │ ├── devil2.h │ │ │ │ ├── devil2.ini │ │ │ │ ├── shield.h │ │ │ │ └── shield.ini │ │ │ ├── DragonMan │ │ │ │ ├── Debris │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Body.ini │ │ │ │ │ ├── Head.h │ │ │ │ │ ├── Head.ini │ │ │ │ │ ├── Leg.h │ │ │ │ │ ├── Leg.ini │ │ │ │ │ ├── Tail.h │ │ │ │ │ ├── Tail.ini │ │ │ │ │ ├── Wing.h │ │ │ │ │ └── Wing.ini │ │ │ │ ├── DragonMan.h │ │ │ │ ├── DragonMan.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── ElementalAir │ │ │ │ ├── Elemental.h │ │ │ │ └── Elemental.ini │ │ │ ├── ElementalLava │ │ │ │ ├── BodyFlare.h │ │ │ │ ├── BodyFlare.ini │ │ │ │ ├── ElementalLava.h │ │ │ │ ├── ElementalLava.ini │ │ │ │ ├── HandFlare.h │ │ │ │ ├── HandFlare.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── LavaBomb.h │ │ │ │ │ ├── LavaBomb.ini │ │ │ │ │ ├── LavaStone.h │ │ │ │ │ ├── LavaStone.ini │ │ │ │ │ ├── LavaStoneFlare.h │ │ │ │ │ └── LavaStoneFlare.ini │ │ │ ├── Elementals │ │ │ │ ├── AirMan.h │ │ │ │ ├── AirMan.ini │ │ │ │ ├── IceMan.h │ │ │ │ ├── IceMan.ini │ │ │ │ ├── Icepick.h │ │ │ │ ├── Icepick.ini │ │ │ │ ├── LavaMan.h │ │ │ │ ├── LavaMan.ini │ │ │ │ ├── LavaManFX │ │ │ │ │ ├── BodyFlare.h │ │ │ │ │ ├── BodyFlare.ini │ │ │ │ │ ├── HandFlare.h │ │ │ │ │ └── HandFlare.ini │ │ │ │ ├── Maul.h │ │ │ │ ├── Maul.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Fireball.h │ │ │ │ │ ├── Fireball.ini │ │ │ │ │ ├── IcePyramid.h │ │ │ │ │ ├── IcePyramid.ini │ │ │ │ │ ├── IcePyramidFlare.h │ │ │ │ │ ├── IcePyramidFlare.ini │ │ │ │ │ ├── LavaBomb.h │ │ │ │ │ ├── LavaBomb.ini │ │ │ │ │ ├── LavaBombFlare.h │ │ │ │ │ ├── LavaBombFlare.ini │ │ │ │ │ ├── LavaStone.h │ │ │ │ │ ├── LavaStone.ini │ │ │ │ │ ├── LavaStoneFlare.h │ │ │ │ │ ├── LavaStoneFlare.ini │ │ │ │ │ ├── Stone.h │ │ │ │ │ ├── Stone.ini │ │ │ │ │ ├── WaterDrop.h │ │ │ │ │ └── WaterDrop.ini │ │ │ │ ├── StoneManFX │ │ │ │ │ ├── BodyFlare.h │ │ │ │ │ └── BodyFlare.ini │ │ │ │ ├── Stoneman.h │ │ │ │ ├── Stoneman.ini │ │ │ │ ├── Twister.h │ │ │ │ ├── Twister.ini │ │ │ │ ├── WaterMan.h │ │ │ │ ├── WaterMan.ini │ │ │ │ └── WaterManFX │ │ │ │ │ ├── BodyFlare.h │ │ │ │ │ └── BodyFlare.ini │ │ │ ├── Eyeman │ │ │ │ ├── Debris │ │ │ │ │ ├── Arm.h │ │ │ │ │ ├── Arm.ini │ │ │ │ │ ├── Leg.h │ │ │ │ │ ├── Leg.ini │ │ │ │ │ ├── Torso.h │ │ │ │ │ └── Torso.ini │ │ │ │ ├── Eyeman.h │ │ │ │ └── Eyeman.ini │ │ │ ├── EyemanOld │ │ │ │ ├── Projectile │ │ │ │ │ ├── Acid.h │ │ │ │ │ └── Acid.ini │ │ │ │ ├── eyeman.h │ │ │ │ └── eyeman.ini │ │ │ ├── Fish │ │ │ │ ├── Fish.h │ │ │ │ ├── Fish.ini │ │ │ │ ├── Glow.h │ │ │ │ └── Glow.ini │ │ │ ├── Fishman │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── fishman.h │ │ │ │ └── fishman.ini │ │ │ ├── Gizmo │ │ │ │ ├── Gizmo.h │ │ │ │ └── Gizmo.ini │ │ │ ├── HeadManOld │ │ │ │ ├── Bag.h │ │ │ │ ├── Bag.ini │ │ │ │ ├── ChainSaw.h │ │ │ │ ├── ChainSaw.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── HeadMan.h │ │ │ │ ├── HeadMan.ini │ │ │ │ ├── Headonstick.h │ │ │ │ ├── Headonstick.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Blade.h │ │ │ │ │ ├── Blade.ini │ │ │ │ │ ├── Bomb.h │ │ │ │ │ ├── Bomb.ini │ │ │ │ │ ├── FireCracker.h │ │ │ │ │ ├── FireCracker.ini │ │ │ │ │ ├── FireTrail.h │ │ │ │ │ └── FireTrail.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── Saw.h │ │ │ │ ├── Saw.ini │ │ │ │ ├── Stick.h │ │ │ │ └── Stick.ini │ │ │ ├── Headman │ │ │ │ ├── ChainSaw.h │ │ │ │ ├── ChainSaw.ini │ │ │ │ ├── Debris │ │ │ │ │ ├── Arm.h │ │ │ │ │ ├── Arm.ini │ │ │ │ │ ├── Leg.h │ │ │ │ │ ├── Leg.ini │ │ │ │ │ ├── Torso.h │ │ │ │ │ └── Torso.ini │ │ │ │ ├── FireCrackerHead.h │ │ │ │ ├── FireCrackerHead.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Blade.h │ │ │ │ │ ├── Blade.ini │ │ │ │ │ ├── Bomb.h │ │ │ │ │ ├── Bomb.ini │ │ │ │ │ ├── FireCracker.h │ │ │ │ │ ├── FireCracker.ini │ │ │ │ │ ├── FireTrail.h │ │ │ │ │ └── FireTrail.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── Saw.h │ │ │ │ ├── Saw.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── headman.h │ │ │ │ ├── headman.ini │ │ │ │ ├── headmantest.h │ │ │ │ └── headmantest.ini │ │ │ ├── HuanMan │ │ │ │ ├── Huanman.h │ │ │ │ ├── Huanman.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Flare.h │ │ │ │ │ ├── Flare.ini │ │ │ │ │ ├── Projectile.h │ │ │ │ │ ├── Projectile.ini │ │ │ │ │ └── tmp │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── MAMUTMAN │ │ │ │ ├── Mamutman.h │ │ │ │ ├── Mamutman.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Mamutman.h │ │ │ │ │ └── Mamutman.ini │ │ │ ├── MANTAMAN │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── mantaman.h │ │ │ │ └── mantaman.ini │ │ │ ├── Mamut │ │ │ │ ├── MAMUT.H │ │ │ │ ├── MAMUT.INI │ │ │ │ ├── OBJECTS │ │ │ │ │ ├── mamut.h │ │ │ │ │ └── mamut.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── MamutProjectile.h │ │ │ │ │ └── MamutProjectile.ini │ │ │ ├── Mental │ │ │ │ ├── BrainBottle.h │ │ │ │ ├── BrainBottle.ini │ │ │ │ ├── BrainDrain.h │ │ │ │ ├── BrainDrain.ini │ │ │ │ ├── BrainHoses.h │ │ │ │ ├── BrainHoses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Mental.h │ │ │ │ └── Mental.ini │ │ │ ├── Robots │ │ │ │ ├── DrivingSpider │ │ │ │ │ ├── DrivingSpider.h │ │ │ │ │ ├── DrivingSpider.ini │ │ │ │ │ ├── Weapon.h │ │ │ │ │ └── Weapon.ini │ │ │ │ ├── DrivingWheel │ │ │ │ │ ├── DrivingWheel.ini │ │ │ │ │ ├── Robot.h │ │ │ │ │ ├── Robot.ini │ │ │ │ │ └── org │ │ │ │ │ │ └── Robot.ini │ │ │ │ ├── FloatBall │ │ │ │ │ ├── Robot.h │ │ │ │ │ └── Robot.ini │ │ │ │ ├── FloatKamikaze │ │ │ │ │ ├── FloatKamikaze.h │ │ │ │ │ ├── FloatKamikaze.ini │ │ │ │ │ ├── Ring.h │ │ │ │ │ └── Ring.ini │ │ │ │ ├── FlyingFighter │ │ │ │ │ ├── FlyingFighter.h │ │ │ │ │ ├── FlyingFighter.ini │ │ │ │ │ ├── Ship.h │ │ │ │ │ └── Ship.ini │ │ │ │ ├── SentryBall │ │ │ │ │ ├── Ball.h │ │ │ │ │ ├── Ball.ini │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect.ini │ │ │ │ │ ├── SentryBall.h │ │ │ │ │ └── SentryBall.ini │ │ │ │ ├── SentryCannon │ │ │ │ │ ├── Cannon.ini │ │ │ │ │ ├── MovingArm.ini │ │ │ │ │ └── SentryCannon.ini │ │ │ │ └── SentryGun │ │ │ │ │ ├── Gun.ini │ │ │ │ │ └── SentryGun.ini │ │ │ ├── SCORPMAN │ │ │ │ ├── Flare.h │ │ │ │ ├── Flare.ini │ │ │ │ ├── Gun.h │ │ │ │ ├── Gun.ini │ │ │ │ ├── scorpman.h │ │ │ │ └── scorpman.ini │ │ │ ├── Walker │ │ │ │ ├── Debris │ │ │ │ │ ├── Head.h │ │ │ │ │ ├── Head.ini │ │ │ │ │ ├── Head2.h │ │ │ │ │ ├── Head2.ini │ │ │ │ │ ├── Leg.h │ │ │ │ │ └── Leg.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── Walker.h │ │ │ │ └── Walker.ini │ │ │ ├── WereBull │ │ │ │ ├── WereBull.h │ │ │ │ └── WereBull.ini │ │ │ ├── WereBullOld │ │ │ │ ├── WereBull.h │ │ │ │ └── WereBull.ini │ │ │ └── Woman │ │ │ │ ├── Projectile │ │ │ │ ├── Projectile.h │ │ │ │ └── Projectile.ini │ │ │ │ ├── Woman.h │ │ │ │ ├── Woman.ini │ │ │ │ ├── WomanForArtwork.h │ │ │ │ └── WomanForArtwork.ini │ │ ├── IHVTest │ │ │ ├── AnimatedTexture.h │ │ │ ├── AnimatedTexture.ini │ │ │ ├── Bump.h │ │ │ ├── Bump.ini │ │ │ ├── CurvedSurfaces.h │ │ │ ├── CurvedSurfaces.ini │ │ │ ├── Diffuse.h │ │ │ ├── Diffuse.ini │ │ │ ├── DoubleSided.h │ │ │ ├── DoubleSided.ini │ │ │ ├── DoubleSided_Add.h │ │ │ ├── DoubleSided_Add.ini │ │ │ ├── DoubleSided_Multiply.h │ │ │ ├── DoubleSided_Multiply.ini │ │ │ ├── EffectTexture.h │ │ │ ├── EffectTexture.ini │ │ │ ├── Flat.h │ │ │ ├── Flat.ini │ │ │ ├── FullBright.h │ │ │ ├── FullBright.ini │ │ │ ├── GlassCurvedSurfaces.h │ │ │ ├── GlassCurvedSurfaces.ini │ │ │ ├── Ignored.h │ │ │ ├── Ignored.ini │ │ │ ├── Lightning.h │ │ │ ├── Lightning.ini │ │ │ ├── ModelAnimation.h │ │ │ ├── ModelAnimation.ini │ │ │ ├── Patch.h │ │ │ ├── Patch.ini │ │ │ ├── Reflection.h │ │ │ ├── Reflection.ini │ │ │ ├── Smooth.h │ │ │ ├── Smooth.ini │ │ │ ├── Specularity.h │ │ │ ├── Specularity.ini │ │ │ ├── Transparent.h │ │ │ ├── Transparent.ini │ │ │ ├── Trasluscent.h │ │ │ └── Trasluscent.ini │ │ ├── Items │ │ │ ├── Ammo │ │ │ │ ├── Bullets │ │ │ │ │ ├── Bullets.h │ │ │ │ │ └── Bullets.ini │ │ │ │ ├── Cannonball │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ ├── CannonBall.ini │ │ │ │ │ ├── CannonBallQuad.h │ │ │ │ │ └── CannonBallQuad.ini │ │ │ │ ├── Electricity │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect.ini │ │ │ │ │ ├── Effect2.h │ │ │ │ │ ├── Effect2.ini │ │ │ │ │ ├── Electricity.h │ │ │ │ │ └── Electricity.ini │ │ │ │ ├── Grenades │ │ │ │ │ ├── Grenades.h │ │ │ │ │ └── Grenades.ini │ │ │ │ ├── Napalm │ │ │ │ │ ├── Napalm.h │ │ │ │ │ └── Napalm.ini │ │ │ │ ├── Rockets │ │ │ │ │ ├── Rockets.h │ │ │ │ │ └── Rockets.ini │ │ │ │ ├── Shells │ │ │ │ │ ├── Shells.h │ │ │ │ │ └── Shells.ini │ │ │ │ └── _Old │ │ │ │ │ ├── Bullets │ │ │ │ │ ├── Bullets.h │ │ │ │ │ └── Bullets.ini │ │ │ │ │ ├── Cannonball │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ ├── CannonBall.ini │ │ │ │ │ ├── CannonBallQuad.h │ │ │ │ │ └── CannonBallQuad.ini │ │ │ │ │ ├── Electricity │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect.ini │ │ │ │ │ ├── Effect2.h │ │ │ │ │ ├── Effect2.ini │ │ │ │ │ ├── Electricity.h │ │ │ │ │ └── Electricity.ini │ │ │ │ │ ├── Grenades │ │ │ │ │ ├── Grenade.h │ │ │ │ │ ├── Grenade.ini │ │ │ │ │ ├── Grenades.h │ │ │ │ │ └── Grenades.ini │ │ │ │ │ ├── Rockets │ │ │ │ │ ├── Rocket01.h │ │ │ │ │ ├── Rocket01.ini │ │ │ │ │ ├── Rockets.h │ │ │ │ │ └── Rockets.ini │ │ │ │ │ └── Shells │ │ │ │ │ ├── Shells.h │ │ │ │ │ └── Shells.ini │ │ │ ├── Armor │ │ │ │ ├── Armor_1.h │ │ │ │ ├── Armor_1.ini │ │ │ │ ├── Armor_100.h │ │ │ │ ├── Armor_100.ini │ │ │ │ ├── Armor_200.h │ │ │ │ ├── Armor_200.ini │ │ │ │ ├── Armor_25.h │ │ │ │ ├── Armor_25.ini │ │ │ │ ├── Armor_50.h │ │ │ │ └── Armor_50.ini │ │ │ ├── Flares │ │ │ │ ├── Flare.h │ │ │ │ └── Flare.ini │ │ │ ├── Health │ │ │ │ ├── Large │ │ │ │ │ ├── Large.h │ │ │ │ │ └── Large.ini │ │ │ │ ├── Medium │ │ │ │ │ ├── Medium.h │ │ │ │ │ └── Medium.ini │ │ │ │ ├── Pill │ │ │ │ │ ├── Pill.h │ │ │ │ │ └── Pill.ini │ │ │ │ ├── Small │ │ │ │ │ ├── Small.h │ │ │ │ │ └── Small.ini │ │ │ │ ├── Super │ │ │ │ │ ├── Super.h │ │ │ │ │ └── Super.ini │ │ │ │ └── SuperOrg │ │ │ │ │ ├── Super.h │ │ │ │ │ └── Super.ini │ │ │ ├── ItemHolder │ │ │ │ ├── ItemHolder.h │ │ │ │ └── ItemHolder.ini │ │ │ ├── Keys │ │ │ │ ├── AnkhGold │ │ │ │ │ ├── Ankh.h │ │ │ │ │ └── Ankh.ini │ │ │ │ ├── AnkhStone │ │ │ │ │ ├── Ankh.h │ │ │ │ │ └── Ankh.ini │ │ │ │ ├── AnkhWood │ │ │ │ │ ├── Ankh.h │ │ │ │ │ └── Ankh.ini │ │ │ │ ├── Elements │ │ │ │ │ ├── Air.h │ │ │ │ │ ├── Air.ini │ │ │ │ │ ├── Earth.h │ │ │ │ │ ├── Earth.ini │ │ │ │ │ ├── Fire.h │ │ │ │ │ ├── Fire.ini │ │ │ │ │ ├── Old │ │ │ │ │ │ ├── Earth.h │ │ │ │ │ │ └── Earth.ini │ │ │ │ │ ├── Water.h │ │ │ │ │ └── Water.ini │ │ │ │ ├── EyeOfRa │ │ │ │ │ ├── EyeOfRa.h │ │ │ │ │ └── EyeOfRa.ini │ │ │ │ ├── EyeOfRaCoin │ │ │ │ │ ├── CoinLeft.h │ │ │ │ │ ├── CoinLeft.ini │ │ │ │ │ ├── CoinRight.h │ │ │ │ │ └── CoinRight.ini │ │ │ │ ├── GoldSphinx │ │ │ │ │ ├── GoldSphinx.h │ │ │ │ │ └── GoldSphinx.ini │ │ │ │ ├── HorSons │ │ │ │ │ ├── HorSons.h │ │ │ │ │ └── HorSons.ini │ │ │ │ ├── Luxor │ │ │ │ │ ├── FeatherOfTruth.h │ │ │ │ │ ├── FeatherOfTruth.ini │ │ │ │ │ ├── GoldHeart.h │ │ │ │ │ └── GoldHeart.ini │ │ │ │ ├── RaKey │ │ │ │ │ ├── Key.h │ │ │ │ │ └── Key.ini │ │ │ │ ├── RaSign │ │ │ │ │ ├── Sign.h │ │ │ │ │ └── Sign.ini │ │ │ │ ├── Scarab │ │ │ │ │ ├── Scarab.h │ │ │ │ │ └── Scarab.ini │ │ │ │ ├── Uaset │ │ │ │ │ ├── Uaset.h │ │ │ │ │ └── Uaset.ini │ │ │ │ └── Wings │ │ │ │ │ ├── Wings.h │ │ │ │ │ └── Wings.ini │ │ │ ├── Pergament │ │ │ │ ├── Pergament.h │ │ │ │ └── Pergament.ini │ │ │ └── PowerUps │ │ │ │ ├── BackPack │ │ │ │ ├── BackPack.h │ │ │ │ └── BackPack.ini │ │ │ │ ├── SeriousDamage │ │ │ │ ├── SeriousDamage.h │ │ │ │ └── SeriousDamage.ini │ │ │ │ ├── SeriousPack │ │ │ │ ├── SeriousPack.h │ │ │ │ └── SeriousPack.ini │ │ │ │ └── _Old │ │ │ │ └── SeriousPack │ │ │ │ ├── SeriousPack.h │ │ │ │ └── SeriousPack.ini │ │ ├── LightSources │ │ │ ├── FireHolder01 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder14 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder16 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder46 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder49 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder51 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── Torch03 │ │ │ │ ├── Torch.h │ │ │ │ └── Torch.ini │ │ │ ├── Torch04 │ │ │ │ ├── Torch.h │ │ │ │ └── Torch.ini │ │ │ ├── WallTorch01 │ │ │ │ ├── WallTorch.h │ │ │ │ └── WallTorch.ini │ │ │ └── WallTorch02 │ │ │ │ ├── WallTorch.h │ │ │ │ └── WallTorch.ini │ │ ├── MenuOld │ │ │ ├── Arrow.h │ │ │ ├── Arrow.ini │ │ │ ├── BigButton.h │ │ │ ├── BigButton.ini │ │ │ ├── BigLongButton.h │ │ │ ├── BigLongButton.ini │ │ │ ├── ExclamationMark.h │ │ │ ├── ExclamationMark.ini │ │ │ ├── InfoTable.h │ │ │ ├── InfoTable.ini │ │ │ ├── Key.h │ │ │ ├── Key.ini │ │ │ ├── Key2V.h │ │ │ ├── Key2V.ini │ │ │ ├── KeyH1_5.h │ │ │ ├── KeyH1_5.ini │ │ │ ├── KeyH2.h │ │ │ ├── KeyH2.ini │ │ │ ├── KeyH3.h │ │ │ ├── KeyH3.ini │ │ │ ├── KeyNoDefined.h │ │ │ ├── KeyNoDefined.ini │ │ │ ├── KeyReturn.h │ │ │ ├── KeyReturn.ini │ │ │ ├── KeySpace.h │ │ │ ├── KeySpace.ini │ │ │ ├── LittleTrigger.h │ │ │ ├── LittleTrigger.ini │ │ │ ├── Monitor.h │ │ │ ├── Monitor.ini │ │ │ ├── Mouse.h │ │ │ ├── Mouse.ini │ │ │ ├── NormalButton.h │ │ │ ├── NormalButton.ini │ │ │ ├── PrevNextButton.h │ │ │ ├── PrevNextButton.ini │ │ │ ├── Question.h │ │ │ ├── Question.ini │ │ │ ├── SeriousSamSign │ │ │ │ ├── SeriousSamSign.h │ │ │ │ └── SeriousSamSign.ini │ │ │ ├── Slider.h │ │ │ ├── Slider.ini │ │ │ ├── SliderInside.h │ │ │ ├── SliderInside.ini │ │ │ ├── SplitScreen.h │ │ │ ├── SplitScreen.ini │ │ │ ├── TitleButton.h │ │ │ ├── TitleButton.ini │ │ │ ├── ValidMode.h │ │ │ ├── ValidMode.ini │ │ │ ├── VeryLittleTrigger.h │ │ │ ├── VeryLittleTrigger.ini │ │ │ └── elfold │ │ │ │ ├── Arrow.h │ │ │ │ ├── Arrow.ini │ │ │ │ ├── BigButton.h │ │ │ │ ├── BigButton.ini │ │ │ │ ├── BigLongButton.h │ │ │ │ ├── BigLongButton.ini │ │ │ │ ├── Buttons_Old │ │ │ │ ├── BigButton.h │ │ │ │ ├── BigButton.ini │ │ │ │ ├── BigLongButton.h │ │ │ │ ├── BigLongButton.ini │ │ │ │ ├── LittleTriger.h │ │ │ │ ├── LittleTriger.ini │ │ │ │ ├── PrevNextButton.h │ │ │ │ ├── PrevNextButton.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── TitleButton.h │ │ │ │ ├── TitleButton.ini │ │ │ │ ├── ValidMode.h │ │ │ │ └── ValidMode.ini │ │ │ │ ├── ExclamationMark.h │ │ │ │ ├── ExclamationMark.ini │ │ │ │ ├── InfoTable.h │ │ │ │ ├── InfoTable.ini │ │ │ │ ├── Key.h │ │ │ │ ├── Key.ini │ │ │ │ ├── Key2V.h │ │ │ │ ├── Key2V.ini │ │ │ │ ├── KeyH1_5.h │ │ │ │ ├── KeyH1_5.ini │ │ │ │ ├── KeyH2.h │ │ │ │ ├── KeyH2.ini │ │ │ │ ├── KeyH3.h │ │ │ │ ├── KeyH3.ini │ │ │ │ ├── KeyNoDefined.h │ │ │ │ ├── KeyNoDefined.ini │ │ │ │ ├── KeyReturn.h │ │ │ │ ├── KeyReturn.ini │ │ │ │ ├── KeySpace.h │ │ │ │ ├── KeySpace.ini │ │ │ │ ├── LittleTriger.h │ │ │ │ ├── LittleTriger.ini │ │ │ │ ├── LittleTrigger.h │ │ │ │ ├── LittleTrigger.ini │ │ │ │ ├── Monitor.h │ │ │ │ ├── Monitor.ini │ │ │ │ ├── Mouse.h │ │ │ │ ├── Mouse.ini │ │ │ │ ├── NormalButton.h │ │ │ │ ├── NormalButton.ini │ │ │ │ ├── PrevNextButton.h │ │ │ │ ├── PrevNextButton.ini │ │ │ │ ├── Question.h │ │ │ │ ├── Question.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── SliderInside.h │ │ │ │ ├── SliderInside.ini │ │ │ │ ├── SplitScreen.h │ │ │ │ ├── SplitScreen.ini │ │ │ │ ├── TitleButton.h │ │ │ │ ├── TitleButton.ini │ │ │ │ ├── ValidMode.h │ │ │ │ ├── ValidMode.ini │ │ │ │ ├── VeryLittleTrigger.h │ │ │ │ └── VeryLittleTrigger.ini │ │ ├── MissionPack │ │ │ ├── Items │ │ │ │ └── Ammo │ │ │ │ │ └── Napalm │ │ │ │ │ ├── Napalm.h │ │ │ │ │ └── Napalm.ini │ │ │ ├── Player │ │ │ │ └── SeriousSam │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Glasses.h │ │ │ │ │ ├── Head.h │ │ │ │ │ └── Player.h │ │ │ └── Weapons │ │ │ │ ├── Flamer │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ │ └── Sniper │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Sniper.h │ │ │ │ ├── Sniper.ini │ │ │ │ ├── SniperItem.h │ │ │ │ └── SniperItem.ini │ │ ├── Objects │ │ │ ├── Crosses │ │ │ │ └── Cross01 │ │ │ │ │ ├── Cross.h │ │ │ │ │ └── Cross.ini │ │ │ ├── Egypt │ │ │ │ ├── Furniture │ │ │ │ │ ├── EggWithHorns │ │ │ │ │ │ ├── EggWithHorns.h │ │ │ │ │ │ └── EggWithHorns.ini │ │ │ │ │ └── Fish │ │ │ │ │ │ ├── Fish.h │ │ │ │ │ │ └── Fish.ini │ │ │ │ ├── Gods │ │ │ │ │ ├── Amon │ │ │ │ │ │ ├── Amon.h │ │ │ │ │ │ └── Amon.ini │ │ │ │ │ ├── Anubis01 │ │ │ │ │ │ ├── Anubis.h │ │ │ │ │ │ └── Anubis.ini │ │ │ │ │ ├── Anubis02 │ │ │ │ │ │ ├── Anubis.h │ │ │ │ │ │ └── Anubis.ini │ │ │ │ │ ├── HorChild │ │ │ │ │ │ ├── HorChild.h │ │ │ │ │ │ └── HorChild.ini │ │ │ │ │ ├── HorSons │ │ │ │ │ │ ├── HorSons.h │ │ │ │ │ │ └── HorSons.ini │ │ │ │ │ ├── Khnum │ │ │ │ │ │ ├── Khnum.h │ │ │ │ │ │ └── Khnum.ini │ │ │ │ │ ├── Khonsu │ │ │ │ │ │ ├── Khonsu.h │ │ │ │ │ │ └── Khonsu.ini │ │ │ │ │ ├── Mestret │ │ │ │ │ │ ├── Mestret.h │ │ │ │ │ │ └── Mestret.ini │ │ │ │ │ ├── Nefthis │ │ │ │ │ │ ├── Nefthis.h │ │ │ │ │ │ └── Nefthis.ini │ │ │ │ │ ├── Neith │ │ │ │ │ │ ├── Neith.h │ │ │ │ │ │ └── Neith.ini │ │ │ │ │ ├── Osiris │ │ │ │ │ │ ├── Osiris.h │ │ │ │ │ │ └── Osiris.ini │ │ │ │ │ ├── Ptah │ │ │ │ │ │ ├── Ptah.h │ │ │ │ │ │ └── Ptah.ini │ │ │ │ │ ├── Ra │ │ │ │ │ │ ├── Ra.h │ │ │ │ │ │ └── Ra.ini │ │ │ │ │ ├── Sebek │ │ │ │ │ │ ├── Sebek.h │ │ │ │ │ │ └── Sebek.ini │ │ │ │ │ ├── Sekhmet │ │ │ │ │ │ ├── Sekhmet.h │ │ │ │ │ │ └── Sekhmet.ini │ │ │ │ │ ├── Toth │ │ │ │ │ │ ├── Toth.h │ │ │ │ │ │ └── Toth.ini │ │ │ │ │ ├── TothMonkey │ │ │ │ │ │ ├── TothMonkey.h │ │ │ │ │ │ └── TothMonkey.ini │ │ │ │ │ └── Uaset │ │ │ │ │ │ ├── Uaset.h │ │ │ │ │ │ └── Uaset.ini │ │ │ │ ├── Mumies │ │ │ │ │ └── Mummy01 │ │ │ │ │ │ ├── Mummy.h │ │ │ │ │ │ └── Mummy.ini │ │ │ │ └── Statues │ │ │ │ │ ├── Cat │ │ │ │ │ ├── Cat.h │ │ │ │ │ ├── Cat.ini │ │ │ │ │ ├── Cat_testbump.h │ │ │ │ │ └── Cat_testbump.ini │ │ │ │ │ ├── Head01 │ │ │ │ │ ├── Head.h │ │ │ │ │ └── Head.ini │ │ │ │ │ ├── Head02 │ │ │ │ │ ├── Head.h │ │ │ │ │ └── Head.ini │ │ │ │ │ ├── Head03 │ │ │ │ │ ├── Head.h │ │ │ │ │ └── Head.ini │ │ │ │ │ ├── Jackal │ │ │ │ │ ├── Jackal.h │ │ │ │ │ └── Jackal.ini │ │ │ │ │ ├── Jaguar │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Jaguar02 │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Jaguar03 │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Jaguar04 │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ │ ├── Sphinx │ │ │ │ │ ├── Sphinx.h │ │ │ │ │ └── Sphinx.ini │ │ │ │ │ ├── Statue01 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue02 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue03 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue04 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue05 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ ├── Statue06 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ │ └── Statue07 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ ├── FireHolders │ │ │ │ └── Torch01 │ │ │ │ │ ├── Torch.h │ │ │ │ │ └── Torch.ini │ │ │ ├── Flag04 │ │ │ │ ├── Flag.h │ │ │ │ └── Flag.ini │ │ │ ├── FlagPole03 │ │ │ │ ├── FlagPole.h │ │ │ │ └── FlagPole.ini │ │ │ ├── Torches │ │ │ │ └── Torch01 │ │ │ │ │ ├── Torch.h │ │ │ │ │ └── Torch.ini │ │ │ └── second │ │ │ │ ├── Bed04 │ │ │ │ ├── Bed04.h │ │ │ │ └── Bed04.ini │ │ │ │ ├── BedCover01 │ │ │ │ ├── BedCover01.h │ │ │ │ └── BedCover01.ini │ │ │ │ ├── Chairwooden01 │ │ │ │ ├── ChairWooden01.h │ │ │ │ └── ChairWooden01.ini │ │ │ │ ├── Ra_Sign02 │ │ │ │ ├── Ra_Sign02.h │ │ │ │ └── Ra_Sign02.ini │ │ │ │ ├── Raspelo03 │ │ │ │ ├── Raspelo03.h │ │ │ │ └── Raspelo03.ini │ │ │ │ ├── Sofa01 │ │ │ │ ├── Sofa01.h │ │ │ │ └── Sofa01.ini │ │ │ │ ├── Sphinx01 │ │ │ │ ├── Spinx01.h │ │ │ │ └── Spinx01.ini │ │ │ │ ├── StoneChair01 │ │ │ │ ├── StoneChair01.h │ │ │ │ └── StoneChair01.ini │ │ │ │ ├── Stool02 │ │ │ │ ├── Stool02.h │ │ │ │ └── Stool02.ini │ │ │ │ ├── Stool03 │ │ │ │ ├── Stool03.h │ │ │ │ └── Stool03.ini │ │ │ │ ├── Table_Work01 │ │ │ │ ├── Table_Work01.h │ │ │ │ └── Table_Work01.ini │ │ │ │ └── Tent02 │ │ │ │ ├── Tent02.h │ │ │ │ └── Tent02.ini │ │ ├── Plants │ │ │ ├── Bush01 │ │ │ │ ├── Bush.h │ │ │ │ └── Bush.ini │ │ │ ├── Flower01 │ │ │ │ ├── Flower.h │ │ │ │ └── Flower.ini │ │ │ ├── Garden01 │ │ │ │ ├── Garden.h │ │ │ │ └── Garden.ini │ │ │ ├── Garden02 │ │ │ │ ├── Garden.h │ │ │ │ └── Garden.ini │ │ │ ├── Ivy01 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── OldTree02 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── OldTree07 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── Palm02 │ │ │ │ ├── BrokenPalm.h │ │ │ │ ├── BrokenPalm.ini │ │ │ │ ├── Palm.h │ │ │ │ └── Palm.ini │ │ │ ├── Palm10 │ │ │ │ ├── BrokenPalm.h │ │ │ │ ├── BrokenPalm.ini │ │ │ │ ├── Palm.h │ │ │ │ ├── Palm.ini │ │ │ │ ├── PalmLeaf.h │ │ │ │ └── PalmLeaf.ini │ │ │ ├── Palm10Old │ │ │ │ ├── BrokenPalm.h │ │ │ │ ├── BrokenPalm.ini │ │ │ │ ├── Palm.h │ │ │ │ ├── Palm.ini │ │ │ │ ├── PalmLeaf.h │ │ │ │ └── PalmLeaf.ini │ │ │ ├── Palm11 │ │ │ │ ├── Palm.h │ │ │ │ └── Palm.ini │ │ │ └── Plant01 │ │ │ │ ├── Plant.h │ │ │ │ └── Plant.ini │ │ ├── Player │ │ │ ├── BeheadedBen │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── BoxerBarry │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── DiscoDan │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Hair.h │ │ │ │ ├── Hair.ini │ │ │ │ ├── Hat.h │ │ │ │ ├── Hat.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── EmptyEd │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Brain.h │ │ │ │ ├── Brain.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── KleerKenny │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── MightyMarvin │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ └── _Opened │ │ │ │ │ ├── Body.h │ │ │ │ │ └── Body.ini │ │ │ ├── PiratePete │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── RedRick │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── NewGlasses │ │ │ │ │ ├── Glasses.h │ │ │ │ │ └── Glasses.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── RockingRyan │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SantaSam │ │ │ │ ├── Beard.h │ │ │ │ ├── Beard.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── PlayerForMapping.h │ │ │ │ ├── PlayerForMapping.ini │ │ │ │ ├── hat.h │ │ │ │ └── hat.ini │ │ │ ├── SeriousSam │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── Soldier │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ └── WildWyat │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Hat.h │ │ │ │ ├── Hat.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ ├── Player_old │ │ │ ├── PiratePete │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── RedRick │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SantaSam │ │ │ │ ├── Beard.h │ │ │ │ ├── Beard.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── hat.h │ │ │ │ └── hat.ini │ │ │ ├── SeriousSam │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── BodyHires.h │ │ │ │ ├── BodyHires.ini │ │ │ │ ├── BodyPromo.h │ │ │ │ ├── BodyPromo.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── PlayerHires.h │ │ │ │ ├── PlayerHires.ini │ │ │ │ ├── PlayerPromo.h │ │ │ │ └── PlayerPromo.ini │ │ │ ├── SeriousSamOld │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Misc │ │ │ │ │ ├── Berretta01.h │ │ │ │ │ ├── Berretta01.ini │ │ │ │ │ ├── Cap01.h │ │ │ │ │ ├── Cap01.ini │ │ │ │ │ ├── Hat01.h │ │ │ │ │ ├── Hat01.ini │ │ │ │ │ ├── Helmet01.h │ │ │ │ │ ├── Helmet01.ini │ │ │ │ │ ├── KnapSack01.h │ │ │ │ │ ├── KnapSack01.ini │ │ │ │ │ ├── KnapSack04.h │ │ │ │ │ ├── KnapSack04.ini │ │ │ │ │ ├── KnapSack05.h │ │ │ │ │ ├── KnapSack05.ini │ │ │ │ │ ├── Knife01.h │ │ │ │ │ └── Knife01.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ └── Test │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Body.ini │ │ │ │ │ ├── Head.h │ │ │ │ │ ├── Head.ini │ │ │ │ │ ├── Player.h │ │ │ │ │ └── Player.ini │ │ │ ├── SeriousSamTmp │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SeriousSammy │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ └── Soldier │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ └── _t │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ ├── Switches │ │ │ └── Switch01 │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ ├── Test │ │ │ ├── 3dexploration │ │ │ │ ├── Box.h │ │ │ │ ├── Box.ini │ │ │ │ ├── Box_Pose.h │ │ │ │ └── Box_Pose.ini │ │ │ ├── Box.h │ │ │ ├── Box.ini │ │ │ ├── Femalet2.h │ │ │ ├── Femalet2.ini │ │ │ ├── MipModelTest.h │ │ │ ├── MipModelTest.ini │ │ │ ├── MultiPolygonMountains.h │ │ │ ├── MultiPolygonMountains.ini │ │ │ ├── MultiPolygonMountainsDisplaced.h │ │ │ ├── MultiPolygonMountainsDisplaced.ini │ │ │ ├── OneBigPolygon.h │ │ │ ├── OneBigPolygon.ini │ │ │ ├── OnePolygon.h │ │ │ ├── OnePolygon.ini │ │ │ ├── PatchTextBox.h │ │ │ ├── PatchTextBox.ini │ │ │ ├── RelfectionOnBox.h │ │ │ ├── RelfectionOnBox.ini │ │ │ ├── Sphere.h │ │ │ ├── Sphere.ini │ │ │ ├── SphereWithMips.h │ │ │ ├── SphereWithMips.ini │ │ │ ├── Teapot_test.h │ │ │ ├── Teapot_test.ini │ │ │ ├── Teapot_test2.h │ │ │ ├── Teapot_test2.ini │ │ │ ├── Teapot_test3.h │ │ │ ├── Teapot_test3.ini │ │ │ ├── Thetraedar.h │ │ │ ├── Thetraedar.ini │ │ │ ├── Tree.h │ │ │ ├── Tree.ini │ │ │ ├── Vase.h │ │ │ ├── Vase.ini │ │ │ └── swinger │ │ │ │ ├── swinger.h │ │ │ │ └── swinger.ini │ │ ├── Weapons │ │ │ ├── Cannon │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Cannon.h │ │ │ │ ├── Cannon.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Light.h │ │ │ │ ├── Light.ini │ │ │ │ ├── NukeBox.h │ │ │ │ ├── NukeBox.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBall.ini │ │ │ ├── Colt │ │ │ │ ├── ColtBullets.h │ │ │ │ ├── ColtBullets.ini │ │ │ │ ├── ColtCock.h │ │ │ │ ├── ColtCock.ini │ │ │ │ ├── ColtItem.h │ │ │ │ ├── ColtItem.ini │ │ │ │ ├── ColtMain.h │ │ │ │ ├── ColtMain.ini │ │ │ │ ├── colt.h │ │ │ │ └── colt.ini │ │ │ ├── DoubleShotgun │ │ │ │ ├── Ammo.h │ │ │ │ ├── Ammo.ini │ │ │ │ ├── DoubleShotgun.h │ │ │ │ ├── DoubleShotgun.ini │ │ │ │ ├── DoubleShotgunItem.h │ │ │ │ ├── DoubleShotgunItem.ini │ │ │ │ ├── Dshotgunbarrels.h │ │ │ │ ├── Dshotgunbarrels.ini │ │ │ │ ├── Dshotgunhandle.h │ │ │ │ ├── Dshotgunhandle.ini │ │ │ │ ├── HandWithAmmo.h │ │ │ │ ├── HandWithAmmo.ini │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ │ ├── Flamer │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ ├── FuelReservoir.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Invisible.h │ │ │ │ │ └── Invisible.ini │ │ │ ├── FlamerNew │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ ├── GhostBuster │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Effect01.h │ │ │ │ ├── Effect01.ini │ │ │ │ ├── EffectFlare.h │ │ │ │ ├── EffectFlare.ini │ │ │ │ ├── EffectFlare01.h │ │ │ │ ├── EffectFlare01.ini │ │ │ │ ├── GhostBuster.h │ │ │ │ ├── GhostBuster.ini │ │ │ │ ├── GhostBusterItem.h │ │ │ │ ├── GhostBusterItem.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Ray.h │ │ │ │ │ └── Ray.ini │ │ │ │ ├── Rotator.h │ │ │ │ └── Rotator.ini │ │ │ ├── GrenadeLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── GrenadeBack.h │ │ │ │ ├── GrenadeBack.ini │ │ │ │ ├── GrenadeLauncher.h │ │ │ │ ├── GrenadeLauncher.ini │ │ │ │ ├── GrenadeLauncherItem.h │ │ │ │ ├── GrenadeLauncherItem.ini │ │ │ │ ├── MovingPipe.h │ │ │ │ └── MovingPipe.ini │ │ │ ├── Knife │ │ │ │ ├── Knife.h │ │ │ │ ├── Knife.ini │ │ │ │ ├── KnifeItem.h │ │ │ │ └── KnifeItem.ini │ │ │ ├── Laser │ │ │ │ ├── Barrel.h │ │ │ │ ├── Barrel.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── LaserItem.h │ │ │ │ ├── LaserItem.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectile.ini │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ └── LaserProjectileGlow01.ini │ │ │ ├── MiniGun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Engine.h │ │ │ │ ├── Engine.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── MiniGunItem.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── minigun.h │ │ │ │ └── minigun.ini │ │ │ ├── Pipebomb │ │ │ │ ├── Bomb.h │ │ │ │ ├── Bomb.ini │ │ │ │ ├── Button.h │ │ │ │ ├── Button.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── HandWithBomb.h │ │ │ │ ├── HandWithBomb.ini │ │ │ │ ├── HandWithStick.h │ │ │ │ ├── HandWithStick.ini │ │ │ │ ├── Shield.h │ │ │ │ ├── Shield.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── StickItem.h │ │ │ │ └── StickItem.ini │ │ │ ├── RocketLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Rocket.h │ │ │ │ │ └── Rocket.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── RocketLauncherItem.h │ │ │ │ ├── RocketLauncherItem.ini │ │ │ │ ├── Rotatingpart.h │ │ │ │ └── Rotatingpart.ini │ │ │ ├── SingleShotgun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── SingleShotGun.h │ │ │ │ ├── SingleShotgun.ini │ │ │ │ ├── SingleShotgunItem.h │ │ │ │ ├── SingleShotgunItem.ini │ │ │ │ ├── Slider.h │ │ │ │ └── Slider.ini │ │ │ ├── Sniper │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Sniper.h │ │ │ │ └── Sniper.ini │ │ │ └── TommyGun │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── TommyGun.h │ │ │ │ ├── TommyGun.ini │ │ │ │ ├── TommyGunItem.h │ │ │ │ └── TommyGunItem.ini │ │ ├── WeaponsHD │ │ │ ├── Cannon │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Cannon.h │ │ │ │ ├── Cannon.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Light.h │ │ │ │ ├── Light.ini │ │ │ │ ├── NukeBox.h │ │ │ │ ├── NukeBox.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBall.ini │ │ │ ├── Colt │ │ │ │ ├── ColtBullets.h │ │ │ │ ├── ColtBullets.ini │ │ │ │ ├── ColtCock.h │ │ │ │ ├── ColtCock.ini │ │ │ │ ├── ColtItem.h │ │ │ │ ├── ColtItem.ini │ │ │ │ ├── ColtMain.h │ │ │ │ ├── ColtMain.ini │ │ │ │ ├── colt.h │ │ │ │ └── colt.ini │ │ │ ├── DoubleShotgun │ │ │ │ ├── Ammo.h │ │ │ │ ├── Ammo.ini │ │ │ │ ├── DoubleShotgun.h │ │ │ │ ├── DoubleShotgun.ini │ │ │ │ ├── DoubleShotgunItem.h │ │ │ │ ├── DoubleShotgunItem.ini │ │ │ │ ├── Dshotgunbarrels.h │ │ │ │ ├── Dshotgunbarrels.ini │ │ │ │ ├── Dshotgunhandle.h │ │ │ │ ├── Dshotgunhandle.ini │ │ │ │ ├── HandWithAmmo.h │ │ │ │ ├── HandWithAmmo.ini │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ │ ├── Flamer │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ ├── FuelReservoir.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Invisible.h │ │ │ │ │ └── Invisible.ini │ │ │ ├── FlamerNew │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ ├── GhostBuster │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Effect01.h │ │ │ │ ├── Effect01.ini │ │ │ │ ├── EffectFlare.h │ │ │ │ ├── EffectFlare.ini │ │ │ │ ├── EffectFlare01.h │ │ │ │ ├── EffectFlare01.ini │ │ │ │ ├── GhostBuster.h │ │ │ │ ├── GhostBuster.ini │ │ │ │ ├── GhostBusterItem.h │ │ │ │ ├── GhostBusterItem.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Ray.h │ │ │ │ │ └── Ray.ini │ │ │ │ ├── Rotator.h │ │ │ │ └── Rotator.ini │ │ │ ├── GrenadeLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── GrenadeBack.h │ │ │ │ ├── GrenadeBack.ini │ │ │ │ ├── GrenadeLauncher.h │ │ │ │ ├── GrenadeLauncher.ini │ │ │ │ ├── GrenadeLauncherItem.h │ │ │ │ ├── GrenadeLauncherItem.ini │ │ │ │ ├── MovingPipe.h │ │ │ │ └── MovingPipe.ini │ │ │ ├── Knife │ │ │ │ ├── Knife.h │ │ │ │ ├── Knife.ini │ │ │ │ ├── KnifeItem.h │ │ │ │ └── KnifeItem.ini │ │ │ ├── Laser │ │ │ │ ├── Barrel.h │ │ │ │ ├── Barrel.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── LaserItem.h │ │ │ │ ├── LaserItem.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectile.ini │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ └── LaserProjectileGlow01.ini │ │ │ ├── MiniGun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Engine.h │ │ │ │ ├── Engine.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── MiniGunItem.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── minigun.h │ │ │ │ └── minigun.ini │ │ │ ├── Pipebomb │ │ │ │ ├── Bomb.h │ │ │ │ ├── Bomb.ini │ │ │ │ ├── Button.h │ │ │ │ ├── Button.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── HandWithBomb.h │ │ │ │ ├── HandWithBomb.ini │ │ │ │ ├── HandWithStick.h │ │ │ │ ├── HandWithStick.ini │ │ │ │ ├── Shield.h │ │ │ │ ├── Shield.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── StickItem.h │ │ │ │ └── StickItem.ini │ │ │ ├── RocketLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Rocket.h │ │ │ │ │ └── Rocket.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── RocketLauncherItem.h │ │ │ │ ├── RocketLauncherItem.ini │ │ │ │ ├── Rotatingpart.h │ │ │ │ └── Rotatingpart.ini │ │ │ ├── SingleShotgun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── SingleShotGun.h │ │ │ │ ├── SingleShotgun.ini │ │ │ │ ├── SingleShotgunItem.h │ │ │ │ ├── SingleShotgunItem.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ └── Switch.h │ │ │ ├── Sniper │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Sniper.h │ │ │ │ └── Sniper.ini │ │ │ └── TommyGun │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── TommyGun.h │ │ │ │ ├── TommyGun.ini │ │ │ │ ├── TommyGunItem.h │ │ │ │ └── TommyGunItem.ini │ │ ├── Weapons_old │ │ │ ├── Cannon │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Cannon.h │ │ │ │ ├── Cannon.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Fuse.h │ │ │ │ ├── Fuse.ini │ │ │ │ ├── HandWithTorch.h │ │ │ │ ├── HandWithTorch.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBall.ini │ │ │ │ ├── Torch.h │ │ │ │ ├── Torch.ini │ │ │ │ ├── TorchUp.h │ │ │ │ └── TorchUp.ini │ │ │ ├── Colt │ │ │ │ ├── ColtBullets.h │ │ │ │ ├── ColtBullets.ini │ │ │ │ ├── ColtCock.h │ │ │ │ ├── ColtCock.ini │ │ │ │ ├── ColtItem.h │ │ │ │ ├── ColtItem.ini │ │ │ │ ├── ColtMain.h │ │ │ │ ├── ColtMain.ini │ │ │ │ ├── colt.h │ │ │ │ └── colt.ini │ │ │ ├── Crosshair │ │ │ │ ├── Crosshair.h │ │ │ │ └── Crosshair.ini │ │ │ ├── DoubleShotgun │ │ │ │ ├── Ammo.h │ │ │ │ ├── Ammo.ini │ │ │ │ ├── DoubleShotgun.h │ │ │ │ ├── DoubleShotgun.ini │ │ │ │ ├── DoubleShotgunItem.h │ │ │ │ ├── DoubleShotgunItem.ini │ │ │ │ ├── Dshotgunbarrels.h │ │ │ │ ├── Dshotgunbarrels.ini │ │ │ │ ├── Dshotgunhandle.h │ │ │ │ ├── Dshotgunhandle.ini │ │ │ │ ├── HandWithAmmo.h │ │ │ │ ├── HandWithAmmo.ini │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ │ ├── DoubleShotgunOld │ │ │ │ ├── Ammo.h │ │ │ │ ├── Ammo.ini │ │ │ │ ├── DoubleShotgun.h │ │ │ │ ├── DoubleShotgun.ini │ │ │ │ ├── DoubleShotgunItem.h │ │ │ │ ├── DoubleShotgunItem.ini │ │ │ │ ├── Dshotgunbarrels.h │ │ │ │ ├── Dshotgunbarrels.ini │ │ │ │ ├── Dshotgunhandle.h │ │ │ │ ├── Dshotgunhandle.ini │ │ │ │ ├── HandWithAmmo.h │ │ │ │ ├── HandWithAmmo.ini │ │ │ │ ├── HandWithAmmo │ │ │ │ │ ├── HandWithAmmo.h │ │ │ │ │ └── HandWithAmmo.ini │ │ │ │ ├── Switch.h │ │ │ │ ├── Switch.ini │ │ │ │ └── t │ │ │ │ │ ├── DoubleShotgun.h │ │ │ │ │ └── DoubleShotgun.ini │ │ │ ├── Flamer │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ ├── FuelReservoir.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Invisible.h │ │ │ │ │ └── Invisible.ini │ │ │ ├── GhostBuster │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Effect01.h │ │ │ │ ├── Effect01.ini │ │ │ │ ├── EffectFlare.h │ │ │ │ ├── EffectFlare.ini │ │ │ │ ├── EffectFlare01.h │ │ │ │ ├── EffectFlare01.ini │ │ │ │ ├── GhostBuster.h │ │ │ │ ├── GhostBuster.ini │ │ │ │ ├── GhostBusterItem.h │ │ │ │ ├── GhostBusterItem.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Ray.h │ │ │ │ │ └── Ray.ini │ │ │ │ ├── Rotator.h │ │ │ │ └── Rotator.ini │ │ │ ├── GrenadeLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── GrenadeBack.h │ │ │ │ ├── GrenadeBack.ini │ │ │ │ ├── GrenadeLauncher.h │ │ │ │ ├── GrenadeLauncher.ini │ │ │ │ ├── GrenadeLauncherItem.h │ │ │ │ ├── GrenadeLauncherItem.ini │ │ │ │ ├── MovingPipe.h │ │ │ │ └── MovingPipe.ini │ │ │ ├── Hand │ │ │ │ ├── Hands.h │ │ │ │ └── Hands.ini │ │ │ ├── Knife │ │ │ │ ├── Knife.h │ │ │ │ ├── Knife.ini │ │ │ │ ├── KnifeItem.h │ │ │ │ └── KnifeItem.ini │ │ │ ├── Laser │ │ │ │ ├── Barrel.h │ │ │ │ ├── Barrel.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── LaserItem.h │ │ │ │ ├── LaserItem.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectile.ini │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ └── LaserProjectileGlow01.ini │ │ │ ├── Minigun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Engine.h │ │ │ │ ├── Engine.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── MiniGunItem.ini │ │ │ │ ├── Shell │ │ │ │ │ ├── Shell.h │ │ │ │ │ └── Shell.ini │ │ │ │ ├── minigun.h │ │ │ │ └── minigun.ini │ │ │ ├── PipeBomb │ │ │ │ ├── Bomb.h │ │ │ │ ├── Bomb.ini │ │ │ │ ├── Button.h │ │ │ │ ├── Button.ini │ │ │ │ ├── Grenade │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenade.ini │ │ │ │ ├── HandWithBomb.h │ │ │ │ ├── HandWithBomb.ini │ │ │ │ ├── HandWithStick.h │ │ │ │ ├── HandWithStick.ini │ │ │ │ ├── Shield.h │ │ │ │ ├── Shield.ini │ │ │ │ ├── Stick.h │ │ │ │ ├── Stick.ini │ │ │ │ ├── StickItem.h │ │ │ │ └── StickItem.ini │ │ │ ├── RocketLauncher │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Rocket.h │ │ │ │ │ └── Rocket.ini │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── RocketLauncher.ini │ │ │ │ ├── Rotatingpart.h │ │ │ │ └── Rotatingpart.ini │ │ │ ├── SingleShotgun │ │ │ │ ├── Barrels.h │ │ │ │ ├── Barrels.ini │ │ │ │ ├── Handle.h │ │ │ │ ├── Handle.ini │ │ │ │ ├── SingleShotGun.h │ │ │ │ ├── SingleShotgun.ini │ │ │ │ ├── SingleShotgunItem.h │ │ │ │ ├── SingleShotgunItem.ini │ │ │ │ ├── Slider.h │ │ │ │ └── Slider.ini │ │ │ └── TommyGun │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Slider.h │ │ │ │ ├── Slider.ini │ │ │ │ ├── TommyGun.h │ │ │ │ ├── TommyGun.ini │ │ │ │ ├── TommyGunItem.h │ │ │ │ └── TommyGunItem.ini │ │ ├── Windows │ │ │ └── Vitraj01 │ │ │ │ ├── Vitraj.h │ │ │ │ └── Vitraj.ini │ │ └── headers │ │ │ ├── Computer │ │ │ └── Floor.h │ │ │ ├── Editor │ │ │ ├── AmbientLight.h │ │ │ ├── AngleVector.h │ │ │ ├── AnimationChanger.h │ │ │ ├── Axis.h │ │ │ ├── BoundingBox.h │ │ │ ├── Camera.h │ │ │ ├── CameraMarker.h │ │ │ ├── CollisionBox.h │ │ │ ├── Copier.h │ │ │ ├── Damager.h │ │ │ ├── DoorController.h │ │ │ ├── EmptyBrush.h │ │ │ ├── EnemyMarker.h │ │ │ ├── EnemySpawner.h │ │ │ ├── EntityMarker.h │ │ │ ├── EnvironmentMarker.h │ │ │ ├── Floor.h │ │ │ ├── Fog.h │ │ │ ├── GradientMarker.h │ │ │ ├── GravityMarker.h │ │ │ ├── GravityRouter.h │ │ │ ├── Guilotine.h │ │ │ ├── Haze.h │ │ │ ├── Lamp.h │ │ │ ├── LightSource.h │ │ │ ├── LightStyle.h │ │ │ ├── Lightning.h │ │ │ ├── MessageHolder.h │ │ │ ├── ModelDestruction.h │ │ │ ├── MovingBrushMarker.h │ │ │ ├── MusicChanger.h │ │ │ ├── MusicHolder.h │ │ │ ├── NavigationMarker.h │ │ │ ├── PlayerActionMarker.h │ │ │ ├── PlayerStart.h │ │ │ ├── PointLight.h │ │ │ ├── PortalMarker.h │ │ │ ├── RangeSphere.h │ │ │ ├── ShipMarker.h │ │ │ ├── SoundHolder.h │ │ │ ├── SoundHolder02.h │ │ │ ├── SpotLight.h │ │ │ ├── StormController.h │ │ │ ├── Teapot.h │ │ │ ├── Teleport.h │ │ │ ├── ThunderController.h │ │ │ ├── Trigger.h │ │ │ ├── Vector.h │ │ │ ├── WarpEntrance.h │ │ │ ├── WarpExit.h │ │ │ ├── WatchPlayers.h │ │ │ ├── WorldLink.h │ │ │ └── WorldSettingsController.h │ │ │ ├── Effects │ │ │ ├── Blood01 │ │ │ │ └── objects │ │ │ │ │ └── Blood01.h │ │ │ ├── BloodCloud │ │ │ │ └── BloodCloud.h │ │ │ ├── BloodExplosion01 │ │ │ │ └── BloodExplosion.h │ │ │ ├── BloodOnTheWall01 │ │ │ │ └── Blood.h │ │ │ ├── BulletOnTheWall │ │ │ │ └── Bullet.h │ │ │ ├── BulletParticles │ │ │ │ └── BulletParticles.h │ │ │ ├── BulletTrail │ │ │ │ └── BulletTrail.h │ │ │ ├── BurnedStainOnTheWall │ │ │ │ └── BurnedStainOnTheWall.h │ │ │ ├── Debris │ │ │ │ ├── Body01 │ │ │ │ │ └── Body.h │ │ │ │ ├── Body02 │ │ │ │ │ └── Body.h │ │ │ │ ├── Body03 │ │ │ │ │ └── Body.h │ │ │ │ ├── Body04 │ │ │ │ │ └── Body.h │ │ │ │ ├── Body05 │ │ │ │ │ └── Body.h │ │ │ │ ├── Brain01 │ │ │ │ │ └── Brain.h │ │ │ │ ├── Flesh │ │ │ │ │ └── Flesh.h │ │ │ │ ├── Lava01 │ │ │ │ │ ├── Lava.h │ │ │ │ │ └── LavaFlare.h │ │ │ │ ├── Skull01 │ │ │ │ │ └── Skull.h │ │ │ │ ├── Skull01_org │ │ │ │ │ └── Skull.h │ │ │ │ ├── Stone │ │ │ │ │ └── Stone.h │ │ │ │ └── Wood01 │ │ │ │ │ └── Wood.h │ │ │ ├── Explosion01 │ │ │ │ └── Explosion01.h │ │ │ ├── Explosion02 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion03 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion04 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion05 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion06 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion07 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion08 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion09 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion10 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion11 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion12 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion13 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion14 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion15 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion16 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion17 │ │ │ │ └── Explosion.h │ │ │ ├── Explosion18 │ │ │ │ └── Explosion.h │ │ │ ├── ExplosionGrenade │ │ │ │ ├── ExplosionGrenade.h │ │ │ │ └── ExplosionGrenade3D.h │ │ │ ├── ExplosionParticles │ │ │ │ ├── Particles.h │ │ │ │ └── Particles3D.h │ │ │ ├── ExplosionRocket │ │ │ │ ├── ExplosionRocket.h │ │ │ │ └── ExplosionRocket3D.h │ │ │ ├── Fire01 │ │ │ │ └── Fire.h │ │ │ ├── Fire02 │ │ │ │ └── Fire.h │ │ │ ├── Fire03 │ │ │ │ └── Fire.h │ │ │ ├── Flare01 │ │ │ │ └── Flare.h │ │ │ ├── Flare02 │ │ │ │ └── Flaire.h │ │ │ ├── Flares1m │ │ │ │ └── Flaire.h │ │ │ ├── Holder2x4 │ │ │ │ ├── Holder.h │ │ │ │ ├── HolderAngle.h │ │ │ │ └── HolderOneSide.h │ │ │ ├── LavaRock01 │ │ │ │ ├── LavaRock.h │ │ │ │ ├── LavaRock02.h │ │ │ │ └── LavaRock03.h │ │ │ ├── LightBeam01 │ │ │ │ └── LightBeam.h │ │ │ ├── Rail │ │ │ │ ├── rail.h │ │ │ │ ├── railend.h │ │ │ │ └── railstart.h │ │ │ ├── RotatingFlare01 │ │ │ │ └── RotatingFlare.h │ │ │ ├── ShockWave │ │ │ │ ├── Ring.h │ │ │ │ └── Ring2.h │ │ │ ├── ShockWave01 │ │ │ │ └── ShockWave.h │ │ │ ├── ShockWaveGreen │ │ │ │ └── ShockWaveGreen.h │ │ │ ├── Smoke01 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke02 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke03 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke04 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke05 │ │ │ │ └── Smoke.h │ │ │ ├── Smoke06 │ │ │ │ └── Smoke.h │ │ │ ├── SmokeLine │ │ │ │ └── SmokeLine.h │ │ │ ├── SmokeLine01 │ │ │ │ └── SmokeLine.h │ │ │ ├── SmokeLine02 │ │ │ │ └── SmokeLine.h │ │ │ ├── StainOnTheWall │ │ │ │ └── Stain.h │ │ │ ├── Teleport01 │ │ │ │ └── Teleport.h │ │ │ ├── Water01 │ │ │ │ └── Water.h │ │ │ ├── WaterFall01 │ │ │ │ └── WaterFall.h │ │ │ ├── WaterFoam01 │ │ │ │ └── Puff.h │ │ │ ├── WaterFoam02 │ │ │ │ └── Foam.h │ │ │ ├── WaterFoam03 │ │ │ │ └── Foam.h │ │ │ └── Weapons │ │ │ │ ├── Flare01 │ │ │ │ └── Flare.h │ │ │ │ └── Flare02 │ │ │ │ └── Flare.h │ │ │ ├── Enemies │ │ │ ├── Beast │ │ │ │ ├── Beast.h │ │ │ │ ├── Projectile │ │ │ │ │ └── Projectile.h │ │ │ │ ├── ProjectileOld │ │ │ │ │ └── Projectile.h │ │ │ │ ├── ProjectileOld2 │ │ │ │ │ └── Projectile.h │ │ │ │ └── ProjectileOrg │ │ │ │ │ └── Projectile.h │ │ │ ├── Boneman │ │ │ │ ├── Boneman.h │ │ │ │ ├── Debris │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Hand.h │ │ │ │ │ └── Legs.h │ │ │ │ └── Projectile │ │ │ │ │ └── Projectile.h │ │ │ ├── Catman │ │ │ │ ├── CatMan.h │ │ │ │ ├── Fire │ │ │ │ │ └── CatmanFire.h │ │ │ │ ├── FireOld │ │ │ │ │ └── CatmanFire.h │ │ │ │ └── Projectile │ │ │ │ │ └── Projectile.h │ │ │ ├── ChainSawFreak │ │ │ │ ├── Freak.h │ │ │ │ └── Saw.h │ │ │ ├── Cyborg │ │ │ │ ├── AssHole.h │ │ │ │ ├── Bike.h │ │ │ │ ├── Cyborg.h │ │ │ │ ├── CyborgONEPART.h │ │ │ │ ├── Foot.h │ │ │ │ ├── Head.h │ │ │ │ ├── LeftLowerArm.h │ │ │ │ ├── LeftLowerLeg.h │ │ │ │ ├── LeftUpperArm.h │ │ │ │ ├── LeftUpperLeg.h │ │ │ │ ├── Projectile │ │ │ │ │ ├── LaserProjectile.h │ │ │ │ │ ├── LaserProjectileGlow01.h │ │ │ │ │ └── Projectile.h │ │ │ │ ├── RightLowerArm.h │ │ │ │ ├── RightLowerLeg.h │ │ │ │ ├── RightUpperArm.h │ │ │ │ ├── RightUpperLeg.h │ │ │ │ ├── Termi+rifle.h │ │ │ │ └── Torso.h │ │ │ ├── Devil │ │ │ │ ├── Flare.h │ │ │ │ ├── MiniGunItem.h │ │ │ │ ├── Minigun.h │ │ │ │ ├── Stick.h │ │ │ │ ├── devil.h │ │ │ │ ├── devil2.h │ │ │ │ └── shield.h │ │ │ ├── DragonMan │ │ │ │ ├── Debris │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Head.h │ │ │ │ │ ├── Leg.h │ │ │ │ │ ├── Tail.h │ │ │ │ │ └── Wing.h │ │ │ │ ├── DragonMan.h │ │ │ │ └── Projectile │ │ │ │ │ └── Projectile.h │ │ │ ├── ElementalAir │ │ │ │ └── Elemental.h │ │ │ ├── ElementalLava │ │ │ │ ├── BodyFlare.h │ │ │ │ ├── ElementalLava.h │ │ │ │ ├── HandFlare.h │ │ │ │ └── Projectile │ │ │ │ │ ├── LavaBomb.h │ │ │ │ │ ├── LavaStone.h │ │ │ │ │ └── LavaStoneFlare.h │ │ │ ├── Elementals │ │ │ │ ├── AirMan.h │ │ │ │ ├── IceMan.h │ │ │ │ ├── Icepick.h │ │ │ │ ├── LavaMan.h │ │ │ │ ├── LavaManFX │ │ │ │ │ ├── BodyFlare.h │ │ │ │ │ └── HandFlare.h │ │ │ │ ├── Maul.h │ │ │ │ ├── Projectile │ │ │ │ │ ├── Fireball.h │ │ │ │ │ ├── IcePyramid.h │ │ │ │ │ ├── IcePyramidFlare.h │ │ │ │ │ ├── LavaBomb.h │ │ │ │ │ ├── LavaStone.h │ │ │ │ │ ├── LavaStoneFlare.h │ │ │ │ │ ├── Stone.h │ │ │ │ │ └── WaterDrop.h │ │ │ │ ├── StoneManFX │ │ │ │ │ └── BodyFlare.h │ │ │ │ ├── Stoneman.h │ │ │ │ ├── Twister.h │ │ │ │ ├── WaterMan.h │ │ │ │ └── WaterManFX │ │ │ │ │ └── BodyFlare.h │ │ │ ├── Eyeman │ │ │ │ └── Eyeman.h │ │ │ ├── EyemanOld │ │ │ │ ├── Projectile │ │ │ │ │ └── Acid.h │ │ │ │ └── eyeman.h │ │ │ ├── Fish │ │ │ │ ├── Fish.h │ │ │ │ └── Glow.h │ │ │ ├── Fishman │ │ │ │ ├── Projectile │ │ │ │ │ └── Projectile.h │ │ │ │ └── fishman.h │ │ │ ├── Gizmo │ │ │ │ └── Gizmo.h │ │ │ ├── HeadManOld │ │ │ │ ├── Bag.h │ │ │ │ ├── ChainSaw.h │ │ │ │ ├── Head.h │ │ │ │ ├── HeadMan.h │ │ │ │ ├── Headonstick.h │ │ │ │ ├── Projectile │ │ │ │ │ ├── Blade.h │ │ │ │ │ ├── Bomb.h │ │ │ │ │ ├── FireCracker.h │ │ │ │ │ └── FireTrail.h │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── Saw.h │ │ │ │ └── Stick.h │ │ │ ├── Headman │ │ │ │ ├── ChainSaw.h │ │ │ │ ├── FireCrackerHead.h │ │ │ │ ├── Head.h │ │ │ │ ├── Projectile │ │ │ │ │ ├── Blade.h │ │ │ │ │ ├── Bomb.h │ │ │ │ │ ├── FireCracker.h │ │ │ │ │ └── FireTrail.h │ │ │ │ ├── RocketLauncher.h │ │ │ │ ├── Saw.h │ │ │ │ ├── Stick.h │ │ │ │ ├── headman.h │ │ │ │ └── headmantest.h │ │ │ ├── HuanMan │ │ │ │ ├── Huanman.h │ │ │ │ └── Projectile │ │ │ │ │ ├── Flare.h │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── tmp │ │ │ │ │ └── Projectile.h │ │ │ ├── MAMUTMAN │ │ │ │ └── Mamutman.h │ │ │ ├── MANTAMAN │ │ │ │ ├── Projectile │ │ │ │ │ └── Projectile.h │ │ │ │ └── mantaman.h │ │ │ ├── Mamut │ │ │ │ ├── MAMUT.H │ │ │ │ ├── OBJECTS │ │ │ │ │ └── mamut.h │ │ │ │ └── Projectile │ │ │ │ │ └── MamutProjectile.h │ │ │ ├── Robots │ │ │ │ ├── DrivingWheel │ │ │ │ │ └── Robot.h │ │ │ │ ├── FloatBall │ │ │ │ │ └── Robot.h │ │ │ │ ├── FlyingFighter │ │ │ │ │ └── Ship.h │ │ │ │ └── SentryBall │ │ │ │ │ ├── Ball.h │ │ │ │ │ ├── Effect.h │ │ │ │ │ └── SentryBall.h │ │ │ ├── SCORPMAN │ │ │ │ ├── Flare.h │ │ │ │ ├── Gun.h │ │ │ │ └── scorpman.h │ │ │ ├── Walker │ │ │ │ ├── Laser.h │ │ │ │ ├── RocketLauncher.h │ │ │ │ └── Walker.h │ │ │ ├── WereBull │ │ │ │ └── WereBull.h │ │ │ ├── WereBullOld │ │ │ │ └── WereBull.h │ │ │ └── Woman │ │ │ │ ├── Projectile │ │ │ │ └── Projectile.h │ │ │ │ ├── Woman.h │ │ │ │ └── WomanForArtwork.h │ │ │ ├── IHVTest │ │ │ ├── CurvedSurfaces.h │ │ │ ├── GlassCurvedSurfaces.h │ │ │ └── Lightning.h │ │ │ ├── Items │ │ │ ├── Ammo │ │ │ │ ├── Bullets │ │ │ │ │ └── Bullets.h │ │ │ │ ├── Cannonball │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBallQuad.h │ │ │ │ ├── Electricity │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect2.h │ │ │ │ │ └── Electricity.h │ │ │ │ ├── Grenades │ │ │ │ │ └── Grenades.h │ │ │ │ ├── Napalm │ │ │ │ │ └── Napalm.h │ │ │ │ ├── Rockets │ │ │ │ │ └── Rockets.h │ │ │ │ ├── Shells │ │ │ │ │ └── Shells.h │ │ │ │ └── _Old │ │ │ │ │ ├── Bullets │ │ │ │ │ └── Bullets.h │ │ │ │ │ ├── Cannonball │ │ │ │ │ ├── CannonBall.h │ │ │ │ │ └── CannonBallQuad.h │ │ │ │ │ ├── Electricity │ │ │ │ │ ├── Effect.h │ │ │ │ │ ├── Effect2.h │ │ │ │ │ └── Electricity.h │ │ │ │ │ ├── Grenades │ │ │ │ │ ├── Grenade.h │ │ │ │ │ └── Grenades.h │ │ │ │ │ ├── Rockets │ │ │ │ │ ├── Rocket01.h │ │ │ │ │ └── Rockets.h │ │ │ │ │ └── Shells │ │ │ │ │ └── Shells.h │ │ │ ├── Armor │ │ │ │ ├── Armor_1.h │ │ │ │ ├── Armor_100.h │ │ │ │ ├── Armor_200.h │ │ │ │ ├── Armor_25.h │ │ │ │ └── Armor_50.h │ │ │ ├── Flares │ │ │ │ └── Flare.h │ │ │ ├── Health │ │ │ │ ├── Large │ │ │ │ │ └── Large.h │ │ │ │ ├── Medium │ │ │ │ │ └── Medium.h │ │ │ │ ├── Pill │ │ │ │ │ └── Pill.h │ │ │ │ ├── Small │ │ │ │ │ └── Small.h │ │ │ │ ├── Super │ │ │ │ │ └── Super.h │ │ │ │ └── SuperOrg │ │ │ │ │ └── Super.h │ │ │ ├── ItemHolder │ │ │ │ └── ItemHolder.h │ │ │ ├── Keys │ │ │ │ ├── AnkhGold │ │ │ │ │ └── Ankh.h │ │ │ │ ├── AnkhStone │ │ │ │ │ └── Ankh.h │ │ │ │ └── AnkhWood │ │ │ │ │ └── Ankh.h │ │ │ └── PowerUps │ │ │ │ ├── BackPack │ │ │ │ └── BackPack.h │ │ │ │ ├── SeriousPack │ │ │ │ └── SeriousPack.h │ │ │ │ └── _Old │ │ │ │ └── SeriousPack │ │ │ │ └── SeriousPack.h │ │ │ ├── Player │ │ │ ├── SeriousSam │ │ │ │ ├── Body.h │ │ │ │ ├── Glasses.h │ │ │ │ ├── Head.h │ │ │ │ └── Player.h │ │ │ └── SeriousSamOld │ │ │ │ ├── Body.h │ │ │ │ ├── Head.h │ │ │ │ └── Player.h │ │ │ ├── Switches │ │ │ └── Switch01 │ │ │ │ └── Switch.h │ │ │ └── Weapons │ │ │ ├── Cannon │ │ │ ├── Body.h │ │ │ ├── Cannon.h │ │ │ ├── Flame.h │ │ │ ├── Light.h │ │ │ ├── NukeBox.h │ │ │ └── Projectile │ │ │ │ └── CannonBall.h │ │ │ ├── Colt │ │ │ ├── ColtBullets.h │ │ │ ├── ColtCock.h │ │ │ ├── ColtItem.h │ │ │ ├── ColtMain.h │ │ │ └── colt.h │ │ │ ├── DoubleShotgun │ │ │ ├── Ammo.h │ │ │ ├── DoubleShotgun.h │ │ │ ├── DoubleShotgunItem.h │ │ │ ├── Dshotgunbarrels.h │ │ │ ├── Dshotgunhandle.h │ │ │ ├── HandWithAmmo.h │ │ │ └── Switch.h │ │ │ ├── Flamer │ │ │ ├── Body.h │ │ │ ├── Flame.h │ │ │ ├── Flamer.h │ │ │ ├── FlamerItem.h │ │ │ ├── FuelReservoir.h │ │ │ └── Projectile │ │ │ │ └── Invisible.h │ │ │ ├── FlamerNew │ │ │ ├── Body.h │ │ │ └── FuelReservoir.h │ │ │ ├── GhostBuster │ │ │ ├── Body.h │ │ │ ├── Effect01.h │ │ │ ├── EffectFlare.h │ │ │ ├── EffectFlare01.h │ │ │ ├── GhostBuster.h │ │ │ ├── GhostBusterItem.h │ │ │ ├── Projectile │ │ │ │ └── Ray.h │ │ │ └── Rotator.h │ │ │ ├── GrenadeLauncher │ │ │ ├── Body.h │ │ │ ├── Grenade │ │ │ │ └── Grenade.h │ │ │ ├── GrenadeBack.h │ │ │ ├── GrenadeLauncher.h │ │ │ ├── GrenadeLauncherItem.h │ │ │ └── MovingPipe.h │ │ │ ├── Knife │ │ │ ├── Knife.h │ │ │ └── KnifeItem.h │ │ │ ├── Laser │ │ │ ├── Barrel.h │ │ │ ├── Body.h │ │ │ ├── Laser.h │ │ │ ├── LaserItem.h │ │ │ └── Projectile │ │ │ │ ├── LaserProjectile.h │ │ │ │ └── LaserProjectileGlow01.h │ │ │ ├── MiniGun │ │ │ ├── Barrels.h │ │ │ ├── Body.h │ │ │ ├── Engine.h │ │ │ ├── Handle.h │ │ │ ├── MiniGunItem.h │ │ │ ├── Shell │ │ │ │ └── Shell.h │ │ │ └── minigun.h │ │ │ ├── PipeBomb │ │ │ ├── Bomb.h │ │ │ ├── Button.h │ │ │ ├── Grenade │ │ │ │ └── Grenade.h │ │ │ ├── HandWithBomb.h │ │ │ ├── HandWithStick.h │ │ │ ├── Shield.h │ │ │ ├── Stick.h │ │ │ └── StickItem.h │ │ │ ├── RocketLauncher │ │ │ ├── Body.h │ │ │ ├── Projectile │ │ │ │ └── Rocket.h │ │ │ ├── RocketLauncher.h │ │ │ ├── RocketLauncherItem.h │ │ │ └── Rotatingpart.h │ │ │ ├── SingleShotgun │ │ │ ├── Barrels.h │ │ │ ├── Handle.h │ │ │ ├── Shell │ │ │ │ └── Shell.h │ │ │ ├── SingleShotGun.h │ │ │ ├── SingleShotgunItem.h │ │ │ └── Slider.h │ │ │ ├── Sniper │ │ │ ├── Body.h │ │ │ └── Sniper.h │ │ │ └── TommyGun │ │ │ ├── Body.h │ │ │ ├── Slider.h │ │ │ ├── TommyGun.h │ │ │ └── TommyGunItem.h │ ├── ModelsMP │ │ ├── Babylon │ │ │ ├── BabylonColumn │ │ │ │ ├── Column.h │ │ │ │ └── Column.ini │ │ │ ├── BabylonTower │ │ │ │ ├── CornerTower.h │ │ │ │ ├── CornerTower.ini │ │ │ │ ├── Tower.h │ │ │ │ └── Tower.ini │ │ │ ├── BabylonTowerIvy │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── Column01 │ │ │ │ ├── Column.h │ │ │ │ └── Column.ini │ │ │ ├── Dome01 │ │ │ │ ├── Dome.h │ │ │ │ └── Dome.ini │ │ │ ├── DoorPortal │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── DoorPortal02 │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── Elephant │ │ │ │ ├── Elephant.h │ │ │ │ └── Elephant.ini │ │ │ ├── FireHolder01 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder02 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder03 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder04 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder05 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder06 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder07 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder09 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder10 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── Horse │ │ │ │ ├── Horse.h │ │ │ │ └── Horse.ini │ │ │ ├── LionStatue │ │ │ │ ├── LionStatue-test.h │ │ │ │ ├── LionStatue-test.ini │ │ │ │ ├── LionStatue.h │ │ │ │ └── LionStatue.ini │ │ │ ├── ManStatue │ │ │ │ ├── Statue.h │ │ │ │ └── Statue.ini │ │ │ ├── Persepolis │ │ │ │ ├── Egg.h │ │ │ │ └── Egg.ini │ │ │ ├── PersepolisTemple │ │ │ │ ├── TempleColumn.h │ │ │ │ └── TempleColumn.ini │ │ │ ├── Portal02 │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── PotPlant01 │ │ │ │ ├── Plant.h │ │ │ │ ├── Plant.ini │ │ │ │ ├── Pot.h │ │ │ │ └── Pot.ini │ │ │ ├── Tower01 │ │ │ │ ├── Tower.h │ │ │ │ ├── Tower.ini │ │ │ │ ├── TowerQuadric.h │ │ │ │ └── TowerQuadric.ini │ │ │ ├── Vase01 │ │ │ │ ├── Vase.h │ │ │ │ └── Vase.ini │ │ │ ├── Vase02 │ │ │ │ ├── Vase.h │ │ │ │ └── Vase.ini │ │ │ └── WallShooter │ │ │ │ ├── Shooter.h │ │ │ │ └── Shooter.ini │ │ ├── Computer │ │ │ ├── Floor.h │ │ │ └── Floor.ini │ │ ├── CutSequences │ │ │ ├── Book │ │ │ │ ├── Book.h │ │ │ │ ├── Book.ini │ │ │ │ ├── CoverPages.h │ │ │ │ └── CoverPages.ini │ │ │ ├── Church │ │ │ │ ├── Arch.h │ │ │ │ ├── Arch.ini │ │ │ │ ├── Bench.h │ │ │ │ ├── Bench.ini │ │ │ │ ├── Column.h │ │ │ │ ├── Column.ini │ │ │ │ ├── ConfessionBox.h │ │ │ │ ├── ConfessionBox.ini │ │ │ │ ├── Vitrage_Big.h │ │ │ │ ├── Vitrage_Big.ini │ │ │ │ ├── Vitrage_Small.h │ │ │ │ └── Vitrage_Small.ini │ │ │ ├── ChurchRoof │ │ │ │ ├── CurchRoof.h │ │ │ │ └── CurchRoof.ini │ │ │ ├── CrateBus │ │ │ │ ├── CrateBus.h │ │ │ │ ├── CrateBus.ini │ │ │ │ ├── CrateBus_Crashed.h │ │ │ │ └── CrateBus_Crashed.ini │ │ │ ├── Curtain │ │ │ │ ├── Curtain.h │ │ │ │ └── Curtain.ini │ │ │ ├── DiscoBall │ │ │ │ ├── DiscoBall.h │ │ │ │ ├── DiscoBall.ini │ │ │ │ ├── Microphone.h │ │ │ │ └── Microphone.ini │ │ │ ├── EgyptSet │ │ │ │ ├── Ball.h │ │ │ │ ├── Ball.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── CameraTracks.h │ │ │ │ ├── CameraTracks.ini │ │ │ │ ├── Chair.h │ │ │ │ ├── Chair.ini │ │ │ │ ├── Devil.h │ │ │ │ ├── Devil.ini │ │ │ │ ├── Devil2.h │ │ │ │ ├── Devil2.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── Toys.h │ │ │ │ └── Toys.ini │ │ │ ├── Intro │ │ │ │ ├── log.h │ │ │ │ └── log.ini │ │ │ ├── Museum │ │ │ │ ├── Container.h │ │ │ │ ├── Container.ini │ │ │ │ ├── Question.h │ │ │ │ ├── Question.ini │ │ │ │ ├── Ughzy.h │ │ │ │ └── Ughzy.ini │ │ │ ├── PokerTable │ │ │ │ ├── Table.h │ │ │ │ └── Table.ini │ │ │ ├── PumpkinField │ │ │ │ ├── Head.h │ │ │ │ └── Head.ini │ │ │ ├── Reflector │ │ │ │ ├── Reflector.h │ │ │ │ └── Reflector.ini │ │ │ ├── Rocket │ │ │ │ ├── Rocket.h │ │ │ │ └── Rocket.ini │ │ │ ├── Santa │ │ │ │ ├── Bag.h │ │ │ │ ├── Bag.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SpaceShip │ │ │ │ ├── BeamMachine.h │ │ │ │ ├── BeamMachine.ini │ │ │ │ ├── BeamMachineRim.h │ │ │ │ ├── BeamMachineRim.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── BottomFlare.h │ │ │ │ ├── BottomFlare.ini │ │ │ │ ├── Door.h │ │ │ │ ├── Door.ini │ │ │ │ ├── FillIn.h │ │ │ │ ├── FillIn.ini │ │ │ │ ├── LightBeam.h │ │ │ │ ├── LightBeam.ini │ │ │ │ ├── PowerRing.h │ │ │ │ ├── PowerRing.ini │ │ │ │ ├── SpaceShip.h │ │ │ │ └── SpaceShip.ini │ │ │ ├── TelephoneBooth │ │ │ │ ├── TelephoneBooth.h │ │ │ │ └── TelephoneBooth.ini │ │ │ ├── ToiletTime │ │ │ │ ├── Bullet.h │ │ │ │ ├── Bullet.ini │ │ │ │ ├── Toilet.h │ │ │ │ ├── Toilet.ini │ │ │ │ ├── ToiletBooth.h │ │ │ │ └── ToiletBooth.ini │ │ │ ├── TriggerAnimated │ │ │ │ ├── TriggerAnimated.h │ │ │ │ └── TriggerAnimated.ini │ │ │ └── Wood │ │ │ │ ├── UnderConstruction.h │ │ │ │ ├── UnderConstruction.ini │ │ │ │ ├── Wood.h │ │ │ │ └── Wood.ini │ │ ├── DeathMatch │ │ │ ├── Bonner │ │ │ │ ├── Bonner.h │ │ │ │ └── Bonner.ini │ │ │ └── Rope │ │ │ │ ├── Rope.h │ │ │ │ └── Rope.ini │ │ ├── Editor │ │ │ ├── Damager.h │ │ │ ├── Damager.ini │ │ │ ├── Debug_EntityStack.h │ │ │ ├── Debug_EntityStack.ini │ │ │ ├── EffectMarker.h │ │ │ ├── EffectMarker.ini │ │ │ ├── EnvironmentParticlesHolder.h │ │ │ ├── EnvironmentParticlesHolder.ini │ │ │ ├── TacticsChanger.h │ │ │ ├── TacticsChanger.ini │ │ │ ├── TacticsHolder.h │ │ │ ├── TacticsHolder.ini │ │ │ ├── TacticsManager.h │ │ │ ├── TacticsManager.ini │ │ │ ├── TimeControler.h │ │ │ └── TimeControler.ini │ │ ├── Effects │ │ │ ├── Debris │ │ │ │ └── Tree │ │ │ │ │ ├── TREE.h │ │ │ │ │ └── TREE.ini │ │ │ ├── Fire03 │ │ │ │ ├── Fire.h │ │ │ │ └── Fire.ini │ │ │ ├── GreenFire │ │ │ │ ├── Fire.h │ │ │ │ ├── Fire.ini │ │ │ │ ├── FireFar.h │ │ │ │ └── FireFar.ini │ │ │ ├── Laser │ │ │ │ ├── Border.h │ │ │ │ ├── Border.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── Laser_Red.h │ │ │ │ └── Laser_Red.ini │ │ │ ├── LightBeam04 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ │ └── LightBeam05 │ │ │ │ ├── LightBeam.h │ │ │ │ └── LightBeam.ini │ │ ├── Enemies │ │ │ ├── AirElemental │ │ │ │ ├── AirElemental.h │ │ │ │ ├── AirElemental.ini │ │ │ │ ├── Elemental.h │ │ │ │ ├── Elemental.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ │ ├── ShockWave.h │ │ │ │ ├── ShockWave.ini │ │ │ │ ├── ShockWaveBase.h │ │ │ │ ├── ShockWaveBase.ini │ │ │ │ ├── Twister.h │ │ │ │ └── Twister.ini │ │ │ ├── CannonRotating │ │ │ │ ├── Debris │ │ │ │ │ ├── Cannon.h │ │ │ │ │ ├── Cannon.ini │ │ │ │ │ ├── RotatingMechanism.h │ │ │ │ │ ├── RotatingMechanism.ini │ │ │ │ │ ├── Turret.h │ │ │ │ │ └── Turret.ini │ │ │ │ ├── RotatingMechanism.h │ │ │ │ ├── RotatingMechanism.ini │ │ │ │ ├── Turret.h │ │ │ │ └── Turret.ini │ │ │ ├── CannonStatic │ │ │ │ ├── Cannon.h │ │ │ │ ├── Cannon.ini │ │ │ │ ├── Debris │ │ │ │ │ ├── Cannon.h │ │ │ │ │ ├── Cannon.ini │ │ │ │ │ ├── Wheel.h │ │ │ │ │ ├── Wheel.ini │ │ │ │ │ ├── Wood.h │ │ │ │ │ └── Wood.ini │ │ │ │ ├── Turret.h │ │ │ │ └── Turret.ini │ │ │ ├── ChainSawFreak │ │ │ │ ├── Freak.h │ │ │ │ ├── Freak.ini │ │ │ │ ├── Saw.h │ │ │ │ └── Saw.ini │ │ │ ├── Demon │ │ │ │ ├── Demon.h │ │ │ │ ├── Demon.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ └── Projectile.ini │ │ │ ├── ExotechLarva │ │ │ │ ├── Arm.h │ │ │ │ ├── Arm.ini │ │ │ │ ├── BackArms.h │ │ │ │ ├── BackArms.ini │ │ │ │ ├── Beam.h │ │ │ │ ├── Beam.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Charger │ │ │ │ │ ├── Beam.h │ │ │ │ │ ├── Beam.ini │ │ │ │ │ ├── ElectricBeam.h │ │ │ │ │ ├── ElectricBeam.ini │ │ │ │ │ ├── Electricity.h │ │ │ │ │ ├── Electricity.ini │ │ │ │ │ ├── ElectricityBeams.h │ │ │ │ │ ├── ElectricityBeams.ini │ │ │ │ │ ├── FloorCharger.h │ │ │ │ │ ├── FloorCharger.ini │ │ │ │ │ ├── PlasmaBeam.h │ │ │ │ │ ├── PlasmaBeam.ini │ │ │ │ │ ├── WallCharger.h │ │ │ │ │ └── WallCharger.ini │ │ │ │ ├── Debris │ │ │ │ │ ├── BodyDebris.h │ │ │ │ │ ├── BodyDebris.ini │ │ │ │ │ ├── TailDebris01.h │ │ │ │ │ ├── TailDebris01.ini │ │ │ │ │ ├── TailDebris02.h │ │ │ │ │ └── TailDebris02.ini │ │ │ │ ├── EffectFlare.h │ │ │ │ ├── EffectFlare.ini │ │ │ │ ├── EnergyBeams.h │ │ │ │ ├── EnergyBeams.ini │ │ │ │ ├── ExotechLarva.h │ │ │ │ ├── ExotechLarva.ini │ │ │ │ ├── Projectile │ │ │ │ │ ├── Projectile.h │ │ │ │ │ ├── Projectile.ini │ │ │ │ │ ├── TailProjectile.h │ │ │ │ │ └── TailProjectile.ini │ │ │ │ ├── Weapons │ │ │ │ │ ├── PlasmaGun.h │ │ │ │ │ └── PlasmaGun.ini │ │ │ │ └── ______Work │ │ │ │ │ └── Bck2 │ │ │ │ │ ├── Arm.h │ │ │ │ │ ├── Arm.ini │ │ │ │ │ ├── Body.h │ │ │ │ │ ├── Body.ini │ │ │ │ │ ├── ExotechLarva.h │ │ │ │ │ └── ExotechLarva.ini │ │ │ ├── Grunt │ │ │ │ ├── Grunt.h │ │ │ │ ├── Grunt.ini │ │ │ │ ├── Gun.h │ │ │ │ ├── Gun.ini │ │ │ │ ├── Gun_Commander.h │ │ │ │ ├── Gun_Commander.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── GruntProjectile.h │ │ │ │ │ └── GruntProjectile.ini │ │ │ ├── Guffy │ │ │ │ ├── Guffy.h │ │ │ │ ├── Guffy.ini │ │ │ │ ├── Gun.h │ │ │ │ ├── Gun.ini │ │ │ │ └── Projectile │ │ │ │ │ ├── GuffyProjectile.h │ │ │ │ │ └── GuffyProjectile.ini │ │ │ ├── Mental │ │ │ │ ├── 01Mental.h │ │ │ │ ├── 01Mental.ini │ │ │ │ ├── Aura.h │ │ │ │ ├── Aura.ini │ │ │ │ ├── BrainBottle.h │ │ │ │ ├── BrainBottle.ini │ │ │ │ ├── BrainDrain.h │ │ │ │ ├── BrainDrain.ini │ │ │ │ ├── BrainHoses.h │ │ │ │ ├── BrainHoses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Head2.h │ │ │ │ ├── Head2.ini │ │ │ │ ├── Horns.h │ │ │ │ ├── Horns.ini │ │ │ │ ├── Mental.h │ │ │ │ └── Mental.ini │ │ │ ├── Shooters │ │ │ │ ├── Arrow01.h │ │ │ │ └── Arrow01.ini │ │ │ ├── Summoner │ │ │ │ ├── Debris │ │ │ │ │ ├── Cloth01.h │ │ │ │ │ ├── Cloth01.ini │ │ │ │ │ ├── Cloth02.h │ │ │ │ │ ├── Cloth02.ini │ │ │ │ │ ├── Cloth03.h │ │ │ │ │ ├── Cloth03.ini │ │ │ │ │ ├── Cloth04.h │ │ │ │ │ └── Cloth04.ini │ │ │ │ ├── SpawnerProjectile │ │ │ │ │ ├── Invisible.h │ │ │ │ │ └── Invisible.ini │ │ │ │ ├── Staff.h │ │ │ │ ├── Staff.ini │ │ │ │ ├── Summoner.h │ │ │ │ └── Summoner.ini │ │ │ └── Woman │ │ │ │ ├── Woman.h │ │ │ │ └── Woman.ini │ │ ├── Gothic │ │ │ ├── Axe01 │ │ │ │ ├── Axe.h │ │ │ │ └── Axe.ini │ │ │ ├── Barrel │ │ │ │ ├── Barrel.h │ │ │ │ └── Barrel.ini │ │ │ ├── Bench │ │ │ │ ├── Bench.h │ │ │ │ └── Bench.ini │ │ │ ├── Castle │ │ │ │ ├── Fence01.h │ │ │ │ ├── Fence01.ini │ │ │ │ ├── Fence02.h │ │ │ │ ├── Fence02.ini │ │ │ │ ├── Fence03.h │ │ │ │ ├── Fence03.ini │ │ │ │ ├── Fence04.h │ │ │ │ ├── Fence04.ini │ │ │ │ ├── Fence05.h │ │ │ │ ├── Fence05.ini │ │ │ │ ├── Fence06.h │ │ │ │ ├── Fence06.ini │ │ │ │ ├── Fence07.h │ │ │ │ ├── Fence07.ini │ │ │ │ ├── Tower01.h │ │ │ │ ├── Tower01.ini │ │ │ │ ├── Tower02.h │ │ │ │ ├── Tower02.ini │ │ │ │ ├── Tower03.h │ │ │ │ └── Tower03.ini │ │ │ ├── Chimney01 │ │ │ │ ├── chimney.h │ │ │ │ └── chimney.ini │ │ │ ├── Church │ │ │ │ ├── Arch.h │ │ │ │ ├── Arch.ini │ │ │ │ ├── Roof01.h │ │ │ │ ├── Roof01.ini │ │ │ │ ├── Roof02.h │ │ │ │ └── Roof02.ini │ │ │ ├── ChurchBell │ │ │ │ ├── ChurchBell.h │ │ │ │ └── ChurchBell.ini │ │ │ ├── ChurchPortal │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── Column01 │ │ │ │ ├── Column.h │ │ │ │ └── Column.ini │ │ │ ├── Corridor │ │ │ │ ├── Bridge.h │ │ │ │ ├── Bridge.ini │ │ │ │ ├── ChurchPortal.h │ │ │ │ ├── ChurchPortal.ini │ │ │ │ ├── Column.h │ │ │ │ ├── Column.ini │ │ │ │ ├── DD.h │ │ │ │ ├── DD.ini │ │ │ │ ├── Pumpkin.h │ │ │ │ ├── Pumpkin.ini │ │ │ │ ├── Tower.h │ │ │ │ ├── Tower.ini │ │ │ │ ├── Tower02.h │ │ │ │ ├── Tower02.ini │ │ │ │ ├── Tower03.h │ │ │ │ ├── Tower03.ini │ │ │ │ ├── Tower04.h │ │ │ │ └── Tower04.ini │ │ │ ├── Cross01 │ │ │ │ ├── Cross.h │ │ │ │ └── Cross.ini │ │ │ ├── Cross02 │ │ │ │ ├── Cross.h │ │ │ │ ├── Cross.ini │ │ │ │ ├── JesusSam.h │ │ │ │ └── JesusSam.ini │ │ │ ├── Cross03 │ │ │ │ ├── Cross.h │ │ │ │ ├── Cross.ini │ │ │ │ ├── Cross01.h │ │ │ │ ├── Cross01.ini │ │ │ │ ├── CrossChurch.h │ │ │ │ ├── CrossChurch.ini │ │ │ │ ├── DeanCross.h │ │ │ │ └── DeanCross.ini │ │ │ ├── DemonStatue │ │ │ │ ├── Demon.h │ │ │ │ └── Demon.ini │ │ │ ├── Fountain │ │ │ │ ├── Fountain.h │ │ │ │ └── Fountain.ini │ │ │ ├── Glove │ │ │ │ ├── Glove.h │ │ │ │ └── Glove.ini │ │ │ ├── Grave │ │ │ │ ├── Grave.h │ │ │ │ └── Grave.ini │ │ │ ├── LandOfDamned │ │ │ │ ├── Player.h │ │ │ │ ├── Player.ini │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── LightSource03 │ │ │ │ ├── LightSource.h │ │ │ │ └── LightSource.ini │ │ │ ├── LightSource04 │ │ │ │ ├── LightSource.h │ │ │ │ └── LightSource.ini │ │ │ ├── LightSource05 │ │ │ │ ├── LightSource.h │ │ │ │ └── LightSource.ini │ │ │ ├── Lightsource01 │ │ │ │ ├── Candle.h │ │ │ │ └── Candle.ini │ │ │ ├── Lightsource02 │ │ │ │ ├── Lightsource.h │ │ │ │ └── Lightsource.ini │ │ │ ├── Painting01 │ │ │ │ ├── Painting.h │ │ │ │ └── Painting.ini │ │ │ ├── Portal │ │ │ │ ├── Portal.h │ │ │ │ └── Portal.ini │ │ │ ├── Shield01 │ │ │ │ ├── Shield.h │ │ │ │ └── Shield.ini │ │ │ ├── Shield02 │ │ │ │ ├── Shield.h │ │ │ │ └── Shield.ini │ │ │ ├── Shooter02 │ │ │ │ ├── Shooter.h │ │ │ │ └── Shooter.ini │ │ │ ├── Snow │ │ │ │ ├── Snow.h │ │ │ │ └── Snow.ini │ │ │ ├── SnowMan │ │ │ │ ├── SnowMan.h │ │ │ │ └── SnowMan.ini │ │ │ ├── Statue01 │ │ │ │ ├── Statue.h │ │ │ │ └── Statue.ini │ │ │ └── Volcano │ │ │ │ ├── Volcano.h │ │ │ │ └── Volcano.ini │ │ ├── Items │ │ │ ├── Ammo │ │ │ │ ├── Napalm │ │ │ │ │ ├── Napalm.h │ │ │ │ │ └── Napalm.ini │ │ │ │ └── SniperBullets │ │ │ │ │ ├── SniperBullets.h │ │ │ │ │ └── SniperBullets.ini │ │ │ ├── Armor │ │ │ │ ├── Armor_5.h │ │ │ │ ├── Armor_5.ini │ │ │ │ ├── Helm.h │ │ │ │ └── Helm.ini │ │ │ ├── Keys │ │ │ │ ├── BookOfWisdom │ │ │ │ │ ├── Book.h │ │ │ │ │ ├── Book.ini │ │ │ │ │ ├── BookHolder.h │ │ │ │ │ └── BookHolder.ini │ │ │ │ ├── Cross │ │ │ │ │ ├── Cross.h │ │ │ │ │ └── Cross.ini │ │ │ │ ├── CrystalSkull │ │ │ │ │ ├── Skull.h │ │ │ │ │ └── Skull.ini │ │ │ │ ├── EntranceKey │ │ │ │ │ ├── EntranceKey.h │ │ │ │ │ └── EntranceKey.ini │ │ │ │ ├── GoldCross │ │ │ │ │ ├── Cross.h │ │ │ │ │ └── Cross.ini │ │ │ │ ├── GoldElephant │ │ │ │ │ ├── Elephant.h │ │ │ │ │ └── Elephant.ini │ │ │ │ ├── GoldJaguar │ │ │ │ │ ├── Jaguar.h │ │ │ │ │ └── Jaguar.ini │ │ │ │ ├── GothicPapyrus │ │ │ │ │ ├── Papyrus.h │ │ │ │ │ └── Papyrus.ini │ │ │ │ ├── HawkWings │ │ │ │ │ ├── WingLeft.h │ │ │ │ │ ├── WingLeft.ini │ │ │ │ │ ├── WingRight.h │ │ │ │ │ └── WingRight.ini │ │ │ │ ├── HolyGrail │ │ │ │ │ ├── Grail.h │ │ │ │ │ └── Grail.ini │ │ │ │ ├── ManStatue │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ ├── MoonSymbol │ │ │ │ │ ├── MoonSymbol.h │ │ │ │ │ └── MoonSymbol.ini │ │ │ │ ├── Statue01 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ ├── Statue02 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ ├── Statue03 │ │ │ │ │ ├── Statue.h │ │ │ │ │ └── Statue.ini │ │ │ │ ├── SunSymbol │ │ │ │ │ ├── SunSymbol.h │ │ │ │ │ └── SunSymbol.ini │ │ │ │ ├── TablesOfWisdom │ │ │ │ │ ├── Tables.h │ │ │ │ │ └── Tables.ini │ │ │ │ ├── WingLion │ │ │ │ │ ├── WingLion.h │ │ │ │ │ └── WingLion.ini │ │ │ │ └── key01 │ │ │ │ │ ├── Key.h │ │ │ │ │ └── Key.ini │ │ │ └── PowerUps │ │ │ │ ├── Invisibility │ │ │ │ ├── Invinsibility.h │ │ │ │ ├── Invinsibility.ini │ │ │ │ ├── Invisibility.h │ │ │ │ └── Invisibility.ini │ │ │ │ ├── Invulnerability │ │ │ │ ├── Invulnerability.h │ │ │ │ └── Invulnerability.ini │ │ │ │ ├── SeriousBomb │ │ │ │ ├── SeriousBomb.h │ │ │ │ └── SeriousBomb.ini │ │ │ │ ├── SeriousDamage │ │ │ │ ├── SeriousDamage.h │ │ │ │ └── SeriousDamage.ini │ │ │ │ └── SeriousSpeed │ │ │ │ ├── SeriousSpeed.h │ │ │ │ └── SeriousSpeed.ini │ │ ├── Objects │ │ │ ├── Flag01 │ │ │ │ ├── Flag.h │ │ │ │ └── Flag.ini │ │ │ └── FlagPole │ │ │ │ ├── FlagPole.h │ │ │ │ └── FlagPole.ini │ │ ├── Plants │ │ │ ├── Bush10 │ │ │ │ ├── Bush.h │ │ │ │ ├── Bush.ini │ │ │ │ ├── Bush_Debris.h │ │ │ │ └── Bush_Debris.ini │ │ │ ├── Bush11 │ │ │ │ ├── Bush01.h │ │ │ │ └── Bush01.ini │ │ │ ├── Bush12 │ │ │ │ ├── Bush01.h │ │ │ │ ├── Bush01.ini │ │ │ │ ├── Bush02.h │ │ │ │ └── Bush02.ini │ │ │ ├── Bush13 │ │ │ │ ├── Barks01.h │ │ │ │ ├── Barks01.ini │ │ │ │ ├── Bush02.h │ │ │ │ ├── Bush02.ini │ │ │ │ ├── BushCoat.h │ │ │ │ └── BushCoat.ini │ │ │ ├── Grass01 │ │ │ │ ├── GRASS.h │ │ │ │ └── GRASS.ini │ │ │ ├── OldTree02 │ │ │ │ ├── Tree.h │ │ │ │ ├── Tree.ini │ │ │ │ ├── Tree_Branch.h │ │ │ │ ├── Tree_Branch.ini │ │ │ │ ├── Tree_Debris01.h │ │ │ │ └── Tree_Debris01.ini │ │ │ ├── Palm20 │ │ │ │ ├── Palm.h │ │ │ │ ├── Palm.ini │ │ │ │ ├── Palm02.h │ │ │ │ ├── Palm02.ini │ │ │ │ ├── Palm02_Debris.h │ │ │ │ ├── Palm02_Debris.ini │ │ │ │ ├── Palm02_Debris00.h │ │ │ │ ├── Palm02_Debris00.ini │ │ │ │ ├── Palm02_Debris01.h │ │ │ │ ├── Palm02_Debris01.ini │ │ │ │ ├── Palm02_Debris02.h │ │ │ │ ├── Palm02_Debris02.ini │ │ │ │ ├── Palm02_Leaf.h │ │ │ │ ├── Palm02_Leaf.ini │ │ │ │ ├── Palm03.h │ │ │ │ └── Palm03.ini │ │ │ ├── PalmBush │ │ │ │ ├── PalmBush01.h │ │ │ │ ├── PalmBush01.ini │ │ │ │ ├── PalmBush02.h │ │ │ │ ├── PalmBush02.ini │ │ │ │ ├── PalmBush03.h │ │ │ │ ├── PalmBush03.ini │ │ │ │ ├── PalmBush04.h │ │ │ │ ├── PalmBush04.ini │ │ │ │ ├── PalmBush04Bark.h │ │ │ │ ├── PalmBush04Bark.ini │ │ │ │ ├── PalmBush_Debris.h │ │ │ │ └── PalmBush_Debris.ini │ │ │ ├── Tree01 │ │ │ │ ├── TREE.h │ │ │ │ ├── TREE.ini │ │ │ │ ├── TREE_Branch.h │ │ │ │ ├── TREE_Branch.ini │ │ │ │ ├── TREE_Leaf.h │ │ │ │ ├── TREE_Leaf.ini │ │ │ │ ├── Tree_Debris00.h │ │ │ │ ├── Tree_Debris00.ini │ │ │ │ ├── Tree_Debris01.h │ │ │ │ ├── Tree_Debris01.ini │ │ │ │ ├── Tree_Debris02.h │ │ │ │ ├── Tree_Debris02.ini │ │ │ │ ├── Tree_Debris03.h │ │ │ │ ├── Tree_Debris03.ini │ │ │ │ ├── Tree_Debris04.h │ │ │ │ └── Tree_Debris04.ini │ │ │ ├── Tree10 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── Tree12 │ │ │ │ ├── TREE.h │ │ │ │ └── TREE.ini │ │ │ ├── Tree13 │ │ │ │ ├── Cherry03.h │ │ │ │ ├── Cherry03.ini │ │ │ │ ├── Cherry03_Branch.h │ │ │ │ ├── Cherry03_Branch.ini │ │ │ │ ├── Cherry03_Debris00.h │ │ │ │ ├── Cherry03_Debris00.ini │ │ │ │ ├── Cherry03_Debris01.h │ │ │ │ ├── Cherry03_Debris01.ini │ │ │ │ ├── Cherry03_Debris02.h │ │ │ │ ├── Cherry03_Debris02.ini │ │ │ │ ├── Leaves.h │ │ │ │ └── Leaves.ini │ │ │ ├── Tree15 │ │ │ │ ├── Tree.h │ │ │ │ ├── Tree.ini │ │ │ │ ├── Tree02.h │ │ │ │ ├── Tree02.ini │ │ │ │ ├── Tree02_Branch.h │ │ │ │ ├── Tree02_Branch.ini │ │ │ │ ├── Tree02_Debris00.h │ │ │ │ ├── Tree02_Debris00.ini │ │ │ │ ├── Tree02_Debris01.h │ │ │ │ ├── Tree02_Debris01.ini │ │ │ │ ├── Tree02_Leaf.h │ │ │ │ ├── Tree02_Leaf.ini │ │ │ │ ├── Tree03.h │ │ │ │ ├── Tree03.ini │ │ │ │ ├── Tree04.h │ │ │ │ └── Tree04.ini │ │ │ ├── Tree16 │ │ │ │ ├── Tree04.h │ │ │ │ └── Tree04.ini │ │ │ ├── Tree17 │ │ │ │ ├── Tree02.h │ │ │ │ ├── Tree02.ini │ │ │ │ ├── Tree03.h │ │ │ │ ├── Tree03.ini │ │ │ │ ├── Tree04.h │ │ │ │ ├── Tree04.ini │ │ │ │ ├── Tree05.h │ │ │ │ ├── Tree05.ini │ │ │ │ ├── Tree05_Branch.h │ │ │ │ ├── Tree05_Branch.ini │ │ │ │ ├── Tree05_Debris00.h │ │ │ │ ├── Tree05_Debris00.ini │ │ │ │ ├── Tree05_Debris01.h │ │ │ │ ├── Tree05_Debris01.ini │ │ │ │ ├── Tree05_Debris02.h │ │ │ │ ├── Tree05_Debris02.ini │ │ │ │ ├── Tree05_Leaf.h │ │ │ │ └── Tree05_Leaf.ini │ │ │ ├── Tree18 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── Tree19 │ │ │ │ ├── Tree.h │ │ │ │ └── Tree.ini │ │ │ ├── Tree20 │ │ │ │ ├── Tree.h │ │ │ │ ├── Tree.ini │ │ │ │ ├── Tree02.h │ │ │ │ ├── Tree02.ini │ │ │ │ ├── Tree02_Debris00.h │ │ │ │ ├── Tree02_Debris00.ini │ │ │ │ ├── Tree02_Debris01.h │ │ │ │ ├── Tree02_Debris01.ini │ │ │ │ ├── Tree02_Debris02.h │ │ │ │ ├── Tree02_Debris02.ini │ │ │ │ ├── Tree02_Leaf.h │ │ │ │ ├── Tree02_Leaf.ini │ │ │ │ ├── Tree03.h │ │ │ │ └── Tree03.ini │ │ │ ├── WallIvy01 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── WallIvy03 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── WallIvy04 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── WallIvy05 │ │ │ │ ├── Ivy.h │ │ │ │ └── Ivy.ini │ │ │ ├── WaterPlant │ │ │ │ ├── Plant.h │ │ │ │ ├── Plant.ini │ │ │ │ ├── Plant02.h │ │ │ │ └── Plant02.ini │ │ │ └── ivy │ │ │ │ ├── Ivy.h │ │ │ │ ├── Ivy.ini │ │ │ │ ├── Ivy_Debris.h │ │ │ │ └── Ivy_Debris.ini │ │ ├── Player │ │ │ ├── BoxerBarry │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── DiscoDan │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Hair.h │ │ │ │ ├── Hair.ini │ │ │ │ ├── Hat.h │ │ │ │ ├── Hat.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── KleerKenny │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── MightyMarvin │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── SeriousSam │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ ├── Swdm │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Glasses.h │ │ │ │ ├── Glasses.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ │ └── Zorg │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Head.h │ │ │ │ ├── Head.ini │ │ │ │ ├── Player.h │ │ │ │ └── Player.ini │ │ ├── SouthAmerica │ │ │ ├── Altar │ │ │ │ ├── Altar.h │ │ │ │ └── Altar.ini │ │ │ ├── Bridge │ │ │ │ ├── Bridge.h │ │ │ │ ├── Bridge.ini │ │ │ │ ├── BridgeSupport.h │ │ │ │ └── BridgeSupport.ini │ │ │ ├── CaveEntrance │ │ │ │ ├── CaveEntrance.h │ │ │ │ └── CaveEntrance.ini │ │ │ ├── Column01 │ │ │ │ ├── Columns.h │ │ │ │ └── Columns.ini │ │ │ ├── CrystalSkull │ │ │ │ ├── Skull04.h │ │ │ │ ├── Skull04.ini │ │ │ │ ├── Skull05.h │ │ │ │ └── Skull05.ini │ │ │ ├── DragonHead01 │ │ │ │ ├── Head.h │ │ │ │ └── Head.ini │ │ │ ├── DragonHead02 │ │ │ │ ├── Head.h │ │ │ │ └── Head.ini │ │ │ ├── DragonHead03 │ │ │ │ ├── DragonHead.h │ │ │ │ └── DragonHead.ini │ │ │ ├── FireHolder01 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder02 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder03 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder04 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder05 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder06 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── FireHolder07 │ │ │ │ ├── FireHolder.h │ │ │ │ ├── FireHolder.ini │ │ │ │ ├── FireHolderNoFire.h │ │ │ │ └── FireHolderNoFire.ini │ │ │ ├── FireHolder08 │ │ │ │ ├── FireHolder.h │ │ │ │ └── FireHolder.ini │ │ │ ├── Hand │ │ │ │ ├── Hand.h │ │ │ │ └── Hand.ini │ │ │ ├── HeadEntrance │ │ │ │ ├── Entrance.h │ │ │ │ └── Entrance.ini │ │ │ ├── HeadStatue01 │ │ │ │ ├── HeadStatue.h │ │ │ │ └── HeadStatue.ini │ │ │ ├── Jaguar │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Jaguar.h │ │ │ │ └── Jaguar.ini │ │ │ ├── LaserMechanism │ │ │ │ ├── LaserMechanism.h │ │ │ │ └── LaserMechanism.ini │ │ │ ├── Pyramid │ │ │ │ ├── Pyramid.h │ │ │ │ ├── Pyramid.ini │ │ │ │ ├── PyramidSmall.h │ │ │ │ ├── PyramidSmall.ini │ │ │ │ ├── Stairs.h │ │ │ │ └── Stairs.ini │ │ │ ├── Pyramid02 │ │ │ │ ├── Pyramid.h │ │ │ │ ├── Pyramid.ini │ │ │ │ ├── Stairs.h │ │ │ │ └── Stairs.ini │ │ │ ├── Pyramid03 │ │ │ │ ├── Pyramid.h │ │ │ │ ├── Pyramid.ini │ │ │ │ ├── PyramidSmall.h │ │ │ │ ├── PyramidSmall.ini │ │ │ │ ├── Stairs.h │ │ │ │ └── Stairs.ini │ │ │ ├── Rocks │ │ │ │ ├── Rock.h │ │ │ │ └── Rock.ini │ │ │ ├── Shooter01 │ │ │ │ ├── Shooter.h │ │ │ │ ├── Shooter.ini │ │ │ │ ├── Shooter02.h │ │ │ │ └── Shooter02.ini │ │ │ ├── Shooter02 │ │ │ │ ├── Shooter.h │ │ │ │ ├── Shooter.ini │ │ │ │ ├── Shooter02.h │ │ │ │ └── Shooter02.ini │ │ │ ├── Shooter03 │ │ │ │ ├── Shooter.h │ │ │ │ └── Shooter.ini │ │ │ ├── Shooter04 │ │ │ │ ├── Shooter.h │ │ │ │ └── Shooter.ini │ │ │ ├── SpiderWeb │ │ │ │ ├── SpiderWeb.h │ │ │ │ └── SpiderWeb.ini │ │ │ ├── Statue05 │ │ │ │ ├── Statue.h │ │ │ │ └── Statue.ini │ │ │ ├── SunOltar │ │ │ │ ├── Oltar.h │ │ │ │ └── Oltar.ini │ │ │ ├── Torch04 │ │ │ │ ├── Torch.h │ │ │ │ └── Torch.ini │ │ │ ├── Totem01 │ │ │ │ ├── Totem01.h │ │ │ │ └── Totem01.ini │ │ │ ├── Totem02 │ │ │ │ ├── Totem.h │ │ │ │ └── Totem.ini │ │ │ └── TwoHeadSnake │ │ │ │ ├── Snake.h │ │ │ │ └── Snake.ini │ │ ├── Switches │ │ │ └── Switch01 │ │ │ │ ├── Switch.h │ │ │ │ └── Switch.ini │ │ ├── TechTest │ │ │ └── TruForm │ │ │ │ ├── BioMech.h │ │ │ │ ├── BioMech.ini │ │ │ │ ├── Portal.h │ │ │ │ ├── Portal.ini │ │ │ │ ├── Teapot.h │ │ │ │ ├── Teapot.ini │ │ │ │ ├── Toroid.h │ │ │ │ └── Toroid.ini │ │ ├── Warped │ │ │ ├── CPPR │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── GrenadeBack.h │ │ │ │ ├── GrenadeBack.ini │ │ │ │ ├── GrenadeLauncher.h │ │ │ │ ├── GrenadeLauncher.ini │ │ │ │ ├── GrenadeLauncherItem.h │ │ │ │ ├── GrenadeLauncherItem.ini │ │ │ │ ├── MovingPipe.h │ │ │ │ └── MovingPipe.ini │ │ │ ├── Laser │ │ │ │ ├── Barrel.h │ │ │ │ ├── Barrel.ini │ │ │ │ ├── Barrel_big.h │ │ │ │ ├── Barrel_big.ini │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Laser.h │ │ │ │ ├── Laser.ini │ │ │ │ ├── LaserItem.h │ │ │ │ └── LaserItem.ini │ │ │ └── Projectile │ │ │ │ ├── Mine.h │ │ │ │ └── Mine.ini │ │ └── Weapons │ │ │ ├── ChainSaw │ │ │ ├── Blade.h │ │ │ ├── Blade.ini │ │ │ ├── BladeForPlayer.h │ │ │ ├── BladeForPlayer.ini │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── BodyForPlayer.h │ │ │ ├── BodyForPlayer.ini │ │ │ ├── ChainSaw.h │ │ │ ├── ChainSaw.ini │ │ │ ├── ChainsawForPlayer.h │ │ │ ├── ChainsawForPlayer.ini │ │ │ ├── ChainsawItem.h │ │ │ ├── ChainsawItem.ini │ │ │ ├── Teeth.h │ │ │ ├── Teeth.ini │ │ │ ├── TeethForPlayer.h │ │ │ └── TeethForPlayer.ini │ │ │ ├── Flamer │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── Flame.h │ │ │ ├── Flame.ini │ │ │ ├── Flamer.h │ │ │ ├── Flamer.ini │ │ │ ├── FlamerItem.h │ │ │ ├── FlamerItem.ini │ │ │ ├── FuelReservoir.h │ │ │ ├── FuelReservoir.ini │ │ │ └── Projectile │ │ │ │ ├── Invisible.h │ │ │ │ └── Invisible.ini │ │ │ ├── Sniper │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── Sniper.h │ │ │ ├── Sniper.ini │ │ │ ├── SniperItem.h │ │ │ └── SniperItem.ini │ │ │ └── Weapons │ │ │ ├── ChainSaw │ │ │ ├── Blade.h │ │ │ ├── Blade.ini │ │ │ ├── BladeForPlayer.h │ │ │ ├── BladeForPlayer.ini │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── BodyForPlayer.h │ │ │ ├── BodyForPlayer.ini │ │ │ ├── ChainSaw.h │ │ │ ├── ChainSaw.ini │ │ │ ├── ChainsawForPlayer.h │ │ │ ├── ChainsawForPlayer.ini │ │ │ ├── ChainsawItem.h │ │ │ ├── ChainsawItem.ini │ │ │ ├── Teeth.h │ │ │ ├── Teeth.ini │ │ │ ├── TeethForPlayer.h │ │ │ └── TeethForPlayer.ini │ │ │ ├── Flamer │ │ │ ├── Backup │ │ │ │ ├── Flamer.h │ │ │ │ └── Flamer.ini │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── Flame.h │ │ │ ├── Flame.ini │ │ │ ├── Flamer.h │ │ │ ├── Flamer.ini │ │ │ ├── FlamerItem.h │ │ │ ├── FlamerItem.ini │ │ │ ├── FuelReservoir.h │ │ │ ├── FuelReservoir.ini │ │ │ ├── Opened │ │ │ │ ├── BodyOpened.h │ │ │ │ ├── BodyOpened.ini │ │ │ │ ├── FuelReservoirOpened.h │ │ │ │ └── FuelReservoirOpened.ini │ │ │ ├── Projectile │ │ │ │ ├── Invisible.h │ │ │ │ └── Invisible.ini │ │ │ ├── Work │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ └── ok │ │ │ │ ├── Body.h │ │ │ │ ├── Body.ini │ │ │ │ ├── Flame.h │ │ │ │ ├── Flame.ini │ │ │ │ ├── Flamer.h │ │ │ │ ├── Flamer.ini │ │ │ │ ├── FlamerItem.h │ │ │ │ ├── FlamerItem.ini │ │ │ │ ├── FuelReservoir.h │ │ │ │ └── FuelReservoir.ini │ │ │ └── Sniper │ │ │ ├── Body.h │ │ │ ├── Body.ini │ │ │ ├── Sniper.h │ │ │ ├── Sniper.ini │ │ │ ├── SniperItem.h │ │ │ └── SniperItem.ini │ ├── RCon │ │ ├── RCon.cpp │ │ ├── RCon.h │ │ ├── RCon.rc │ │ ├── RCon.vcxproj │ │ ├── RCon.vcxproj.filters │ │ ├── RCon.vcxproj.user │ │ ├── RConDlg.cpp │ │ ├── RConDlg.h │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── res │ │ │ ├── RCon.ico │ │ │ └── RCon.rc2 │ │ └── resource.h │ ├── SamTSE.sln │ ├── SeriousSam │ │ ├── ArrowDir.h │ │ ├── CmdLine.cpp │ │ ├── CmdLine.h │ │ ├── Credits.cpp │ │ ├── Credits.h │ │ ├── FileInfo.h │ │ ├── GLSettings.cpp │ │ ├── GLSettings.h │ │ ├── LCDDrawing.cpp │ │ ├── LCDDrawing.h │ │ ├── LevelInfo.cpp │ │ ├── LevelInfo.h │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── Menu.cpp │ │ ├── Menu.h │ │ ├── MenuGadgets.cpp │ │ ├── MenuGadgets.h │ │ ├── MenuPrinting.cpp │ │ ├── MenuPrinting.h │ │ ├── SeriousSam.aps │ │ ├── SeriousSam.cpp │ │ ├── SeriousSam.h │ │ ├── SeriousSam.rc │ │ ├── SeriousSam.vcxproj │ │ ├── SeriousSam.vcxproj.filters │ │ ├── SeriousSam.vcxproj.user │ │ ├── SeriousSamTFE.vcxproj │ │ ├── SeriousSamTFE.vcxproj.filters │ │ ├── SeriousSamTFE.vcxproj.user │ │ ├── Splash.bmp │ │ ├── SplashMask.bmp │ │ ├── SplashScreen.cpp │ │ ├── SplashScreen.h │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ ├── VarList.cpp │ │ ├── VarList.h │ │ ├── nocursor.cur │ │ ├── res │ │ │ └── SeriousSam.ico │ │ └── resource.h │ ├── SeriousSkaStudio │ │ ├── CheckBox.cpp │ │ ├── CheckBox.h │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── ColoredButton.cpp │ │ ├── ColoredButton.h │ │ ├── DlgBarTreeView.cpp │ │ ├── DlgBarTreeView.h │ │ ├── DlgClient.cpp │ │ ├── DlgClient.h │ │ ├── DlgTemplate.cpp │ │ ├── DlgTemplate.h │ │ ├── DropDown.cpp │ │ ├── DropDown.h │ │ ├── MDIClientWnd.cpp │ │ ├── MDIClientWnd.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── ModelTreeCtrl.cpp │ │ ├── ModelTreeCtrl.h │ │ ├── Parser.y │ │ ├── ParsingSymbols.h │ │ ├── ReadMe.txt │ │ ├── Scanner.l │ │ ├── SeriousSkaStudio.clw │ │ ├── SeriousSkaStudio.cpp │ │ ├── SeriousSkaStudio.h │ │ ├── SeriousSkaStudio.rc │ │ ├── SeriousSkaStudio.vcxproj │ │ ├── SeriousSkaStudio.vcxproj.filters │ │ ├── SeriousSkaStudio.vcxproj.user │ │ ├── SeriousSkaStudioDoc.cpp │ │ ├── SeriousSkaStudioDoc.h │ │ ├── SeriousSkaStudioView.cpp │ │ ├── SeriousSkaStudioView.h │ │ ├── SplitterFrame.cpp │ │ ├── SplitterFrame.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TexView.cpp │ │ ├── TexView.h │ │ ├── TextBox.cpp │ │ ├── TextBox.h │ │ ├── hlp │ │ │ ├── AfxCore.rtf │ │ │ ├── AppExit.bmp │ │ │ ├── Bullet.bmp │ │ │ ├── CurArw2.bmp │ │ │ ├── CurArw4.bmp │ │ │ ├── CurHelp.bmp │ │ │ ├── EditCopy.bmp │ │ │ ├── EditCut.bmp │ │ │ ├── EditPast.bmp │ │ │ ├── EditUndo.bmp │ │ │ ├── FileNew.bmp │ │ │ ├── FileOpen.bmp │ │ │ ├── FilePrnt.bmp │ │ │ ├── FileSave.bmp │ │ │ ├── HlpSBar.bmp │ │ │ ├── HlpTBar.bmp │ │ │ ├── RecFirst.bmp │ │ │ ├── RecLast.bmp │ │ │ ├── RecNext.bmp │ │ │ ├── RecPrev.bmp │ │ │ ├── ScMenu.bmp │ │ │ ├── Scmax.bmp │ │ │ ├── Scmin.bmp │ │ │ ├── SeriousSkaStudio.cnt │ │ │ ├── SeriousSkaStudio.hm │ │ │ └── SeriousSkaStudio.hpj │ │ ├── res │ │ │ ├── Icons.bmp │ │ │ ├── SeriousSkaStudio.ico │ │ │ ├── SeriousSkaStudio.rc2 │ │ │ ├── SeriousSkaStudioDoc.ico │ │ │ ├── Toolbar.bmp │ │ │ ├── bmp00001.bmp │ │ │ └── toolbar1.bmp │ │ ├── resource.h │ │ └── unistd.h │ ├── Shaders │ │ ├── AddShader.cpp │ │ ├── AddShaderDS.cpp │ │ ├── BaseShader.cpp │ │ ├── BaseShaderDS.cpp │ │ ├── BaseTransparent.cpp │ │ ├── BaseTransparentDS.cpp │ │ ├── ColorShader.cpp │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── DetailShader.cpp │ │ ├── DisplaceShader.cpp │ │ ├── InvisibleShader.cpp │ │ ├── MultiLayerShader.cpp │ │ ├── Reflection.cpp │ │ ├── ReflectionDS.cpp │ │ ├── ReftectionAndSpecular.cpp │ │ ├── ReftectionAndSpecularDS.cpp │ │ ├── Shaders.vcxproj │ │ ├── Shaders.vcxproj.filters │ │ ├── Shaders.vcxproj.user │ │ ├── Specular.cpp │ │ ├── SpecularDS.cpp │ │ ├── StdH.cpp │ │ ├── StdH.h │ │ └── Translucent.cpp │ ├── TEXConv │ │ ├── TEXConv.cpp │ │ ├── TEXConv.vcxproj │ │ ├── TEXConv.vcxproj.filters │ │ └── TEXConv.vcxproj.user │ ├── WorldEditor │ │ ├── ActiveTextureWnd.cpp │ │ ├── ActiveTextureWnd.h │ │ ├── BrowseWindow.cpp │ │ ├── Browser.cpp │ │ ├── Browser.h │ │ ├── BrushPaletteWnd.cpp │ │ ├── BrushPaletteWnd.h │ │ ├── CSGDesitnationCombo.cpp │ │ ├── CSGDesitnationCombo.h │ │ ├── ChildFrm.cpp │ │ ├── ChildFrm.h │ │ ├── ColorPaletteWnd.cpp │ │ ├── ColorPaletteWnd.h │ │ ├── ColoredButton.cpp │ │ ├── CtlTipOfTheDayText.cpp │ │ ├── CtlTipOfTheDayText.h │ │ ├── CtrlAxisRadio.cpp │ │ ├── CtrlBrowseFile.cpp │ │ ├── CtrlBrowseFile.h │ │ ├── CtrlColorBrowsingModeRadio.cpp │ │ ├── CtrlColorBrowsingModeRadio.h │ │ ├── CtrlEditBoolean.cpp │ │ ├── CtrlEditBoolean.h │ │ ├── CtrlEditFlags.cpp │ │ ├── CtrlEditFlags.h │ │ ├── CtrlEditFloat.cpp │ │ ├── CtrlEditFloat.h │ │ ├── CtrlEditString.cpp │ │ ├── CtrlEditString.h │ │ ├── CtrlEnumCombo.cpp │ │ ├── CtrlEnumCombo.h │ │ ├── CustomComboWnd.cpp │ │ ├── CustomComboWnd.h │ │ ├── DlgAllignVertices.cpp │ │ ├── DlgAllignVertices.h │ │ ├── DlgAutTexturize.cpp │ │ ├── DlgAutTexturize.h │ │ ├── DlgAutoDeltaCSG.cpp │ │ ├── DlgAutoDeltaCSG.h │ │ ├── DlgBrowseByClass.cpp │ │ ├── DlgBrowseByClass.h │ │ ├── DlgComment.cpp │ │ ├── DlgComment.h │ │ ├── DlgCreateVirtualDirectory.cpp │ │ ├── DlgCreateVirtualDirectory.h │ │ ├── DlgDisplaceMapSize.cpp │ │ ├── DlgDisplaceMapSize.h │ │ ├── DlgEditFloat.cpp │ │ ├── DlgEditFloat.h │ │ ├── DlgEditTerrainBrush.cpp │ │ ├── DlgEditTerrainBrush.h │ │ ├── DlgEditTerrainLayer.cpp │ │ ├── DlgEditTerrainLayer.h │ │ ├── DlgFilterPolygonSelection.cpp │ │ ├── DlgFilterPolygonSelection.h │ │ ├── DlgFilterVertexSelection.cpp │ │ ├── DlgFilterVertexSelection.h │ │ ├── DlgGenerateFBM.cpp │ │ ├── DlgGenerateFBM.h │ │ ├── DlgLightAnimationEditor.cpp │ │ ├── DlgLightAnimationEditor.h │ │ ├── DlgLinkTree.cpp │ │ ├── DlgLinkTree.h │ │ ├── DlgMirrorAndStretch.cpp │ │ ├── DlgMirrorAndStretch.h │ │ ├── DlgNumericAlpha.cpp │ │ ├── DlgNumericAlpha.h │ │ ├── DlgPgGlobal.cpp │ │ ├── DlgPgGlobal.h │ │ ├── DlgPgPolygon.cpp │ │ ├── DlgPgPolygon.h │ │ ├── DlgPgPosition.cpp │ │ ├── DlgPgPosition.h │ │ ├── DlgPgPrimitive.cpp │ │ ├── DlgPgPrimitive.h │ │ ├── DlgPgRenderingStatistics.cpp │ │ ├── DlgPgRenderingStatistics.h │ │ ├── DlgPgSector.cpp │ │ ├── DlgPgSector.h │ │ ├── DlgPgShadow.cpp │ │ ├── DlgPgShadow.h │ │ ├── DlgPgTerrain.cpp │ │ ├── DlgPgTerrain.h │ │ ├── DlgPgTexture.cpp │ │ ├── DlgPgTexture.h │ │ ├── DlgPreferences.cpp │ │ ├── DlgPreferences.h │ │ ├── DlgProgress.cpp │ │ ├── DlgProgress.h │ │ ├── DlgRenderingPreferences.cpp │ │ ├── DlgRenderingPreferences.h │ │ ├── DlgSelectByName.cpp │ │ ├── DlgSelectByName.h │ │ ├── DlgSnapVertex.cpp │ │ ├── DlgSnapVertex.h │ │ ├── DlgStretchChildOffset.cpp │ │ ├── DlgStretchChildOffset.h │ │ ├── DlgTEOperationSettings.cpp │ │ ├── DlgTEOperationSettings.h │ │ ├── DlgTerrainProperties.cpp │ │ ├── DlgTerrainProperties.h │ │ ├── DlgTipOfTheDay.cpp │ │ ├── DlgTipOfTheDay.h │ │ ├── DlgTreeShortcuts.cpp │ │ ├── DlgTreeShortcuts.h │ │ ├── DlgWorldSettings.cpp │ │ ├── EditMipSwitchDistance.cpp │ │ ├── EditMipSwitchDistance.h │ │ ├── EntitySelectionListBox.cpp │ │ ├── EntitySelectionListBox.h │ │ ├── InfoFrame.cpp │ │ ├── InfoFrame.h │ │ ├── InfoSheet.cpp │ │ ├── InfoSheet.h │ │ ├── MainFrm.cpp │ │ ├── MainFrm.h │ │ ├── PrimitiveHistoryCombo.cpp │ │ ├── PrimitiveHistoryCombo.h │ │ ├── PropertyComboBar.cpp │ │ ├── PropertyComboBar.h │ │ ├── PropertyComboBox.cpp │ │ ├── PropertyComboBox.h │ │ ├── ReadMe.txt │ │ ├── SkyFloat.cpp │ │ ├── SkyFloat.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TerrainEditing.cpp │ │ ├── TerrainEditing.h │ │ ├── TerrainInterface.cpp │ │ ├── TerrainInterface.h │ │ ├── ToolTipWnd.cpp │ │ ├── ToolTipWnd.h │ │ ├── TriangularisationCombo.cpp │ │ ├── TriangularisationCombo.h │ │ ├── ViewTexture.cpp │ │ ├── ViewTexture.h │ │ ├── Viewers.cpp │ │ ├── Viewers.h │ │ ├── VirtualTreeCtrl.cpp │ │ ├── VirtualTreeCtrl.h │ │ ├── VirtualTreeNode.cpp │ │ ├── VirtualTreeNode.h │ │ ├── WndAnimationFrames.cpp │ │ ├── WndAnimationFrames.h │ │ ├── WndDisplayTexture.cpp │ │ ├── WndDisplayTexture.h │ │ ├── WndTerrainTilePalette.cpp │ │ ├── WndTerrainTilePalette.h │ │ ├── WndTestAnimation.cpp │ │ ├── WndTestAnimation.h │ │ ├── WorldEditor.clw │ │ ├── WorldEditor.cpp │ │ ├── WorldEditor.dsw │ │ ├── WorldEditor.h │ │ ├── WorldEditor.rc │ │ ├── WorldEditor.vcxproj │ │ ├── WorldEditor.vcxproj.filters │ │ ├── WorldEditor.vcxproj.user │ │ ├── WorldEditorDoc.cpp │ │ ├── WorldEditorDoc.h │ │ ├── WorldEditorView.cpp │ │ ├── WorldEditorView.h │ │ ├── arrowcop.cur │ │ ├── browsewindow.h │ │ ├── coloredbutton.h │ │ ├── ctrlaxisradio.h │ │ ├── dlgworldsettings.h │ │ ├── hlp │ │ │ ├── Index.hhk │ │ │ ├── Table of Contents.hhc │ │ │ ├── WorldEditor.hhp │ │ │ ├── html │ │ │ │ ├── AfxCore.rtf │ │ │ │ ├── BrowserWindow.html │ │ │ │ ├── Introduction.html │ │ │ │ ├── OldHelp.doc │ │ │ │ └── QuickStart.html │ │ │ └── images │ │ │ │ ├── Browser.jpg │ │ │ │ ├── DocumentWindow.jpg │ │ │ │ ├── MainToolbar.jpg │ │ │ │ └── WedLogo.jpg │ │ ├── res │ │ │ ├── TipOfTheDay.bmp │ │ │ ├── Toolbar.bmp │ │ │ ├── WorldEditor.ico │ │ │ ├── WorldEditor.rc2 │ │ │ ├── WorldEditorDoc.ico │ │ │ ├── bmp00001.bmp │ │ │ ├── bmp00002.bmp │ │ │ ├── bmp00003.bmp │ │ │ ├── bmp00004.bmp │ │ │ ├── bmp00005.bmp │ │ │ ├── bmp00006.bmp │ │ │ ├── csg_tool.bmp │ │ │ ├── cur00001.cur │ │ │ ├── cur00002.cur │ │ │ ├── cur00003.cur │ │ │ ├── cur00004.cur │ │ │ ├── cut_curs.ico │ │ │ ├── director.bmp │ │ │ ├── ico00001.ico │ │ │ ├── ico00002.ico │ │ │ ├── ico00003.ico │ │ │ ├── ico00004.ico │ │ │ ├── ico00005.ico │ │ │ ├── ico00006.ico │ │ │ ├── ico00007.ico │ │ │ ├── ico00008.ico │ │ │ ├── ico00009.ico │ │ │ ├── ico00010.ico │ │ │ ├── ico00011.ico │ │ │ ├── ico00012.ico │ │ │ ├── ico00013.ico │ │ │ ├── ico00014.ico │ │ │ ├── ico00015.ico │ │ │ ├── ico00016.ico │ │ │ ├── ico00017.ico │ │ │ ├── ico00018.ico │ │ │ ├── ico00019.ico │ │ │ ├── ico00020.ico │ │ │ ├── ico00021.ico │ │ │ ├── ico00022.ico │ │ │ ├── ico00023.ico │ │ │ ├── ico00024.ico │ │ │ ├── ico00025.ico │ │ │ ├── ico00026.ico │ │ │ ├── ico00027.ico │ │ │ ├── icon1.ico │ │ │ ├── idr_icon.ico │ │ │ ├── mainfram.bmp │ │ │ ├── mirror1.cur │ │ │ ├── te_erase.cur │ │ │ ├── te_heigh.cur │ │ │ ├── te_layer.cur │ │ │ ├── te_max1.cur │ │ │ ├── te_min1.cur │ │ │ ├── te_noise.cur │ │ │ ├── te_pick.cur │ │ │ ├── te_pick1.cur │ │ │ ├── te_poste.cur │ │ │ ├── toolbar1.bmp │ │ │ └── view_too.bmp │ │ └── resource.h │ ├── amp11lib │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Interface.txt │ │ ├── README │ │ ├── amp11lib.cpp │ │ ├── amp11lib.h │ │ ├── amp11lib.vcxproj │ │ ├── amp11lib.vcxproj.filters │ │ ├── amp11lib.vcxproj.user │ │ ├── amp1dec.cpp │ │ ├── amp2dec.cpp │ │ ├── amp3dec.cpp │ │ ├── ampdec.cpp │ │ ├── ampdec.h │ │ ├── ampsynth.cpp │ │ ├── binfile │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── binfarc.cpp │ │ │ ├── binfarc.h │ │ │ ├── binfcon.cpp │ │ │ ├── binfcon.h │ │ │ ├── binfhttp.cpp │ │ │ ├── binfhttp.h │ │ │ ├── binfile.cpp │ │ │ ├── binfile.h │ │ │ ├── binfilef.cpp │ │ │ ├── binfmem.cpp │ │ │ ├── binfmem.h │ │ │ ├── binfpllx.cpp │ │ │ ├── binfpllx.h │ │ │ ├── binfplnt.cpp │ │ │ ├── binfplnt.h │ │ │ ├── binfplsb.cpp │ │ │ ├── binfplsb.h │ │ │ ├── binfplwv.cpp │ │ │ ├── binfplwv.h │ │ │ ├── binfstd.cpp │ │ │ ├── binfstd.h │ │ │ ├── binftcp.cpp │ │ │ ├── binftcp.h │ │ │ └── ptypes.h │ │ ├── mpgsplit.cpp │ │ ├── mpgsplit.h │ │ ├── timer.cpp │ │ └── timer.h │ ├── bison.simple │ ├── build-linux32.sh │ ├── build-linux64.sh │ ├── cmake │ │ ├── FindSDL2.cmake │ │ └── FindVulkan.cmake │ ├── libogg │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── README │ │ ├── include │ │ │ └── ogg │ │ │ │ ├── config_types.h.in │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ ├── libogg_dynamic.vcxproj │ │ ├── libogg_dynamic.vcxproj.user │ │ ├── ogg.def │ │ └── src │ │ │ ├── bitwise.c │ │ │ └── framing.c │ └── libvorbis │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── COPYING │ │ ├── README │ │ ├── include │ │ └── vorbis │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ │ ├── 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_dynamic.vcxproj │ │ ├── libvorbisfile_dynamic.vcxproj │ │ ├── vorbis.def │ │ ├── vorbisenc.def │ │ └── vorbisfile.def ├── Temp │ └── empty ├── Tools.Win32 │ ├── Bison.exe │ ├── Flex.exe │ ├── bison.zip │ └── flex.zip ├── VirtualTrees │ └── BasicVirtualTree.vrt ├── serioussamse.desktop └── serioussamse.png ├── appimage ├── patches │ ├── 0001-AppImage-CMakeLists.txt.patch │ ├── 0002-AppImage-Engine.cpp.patch │ ├── 0003-AppImage-Engine.h.patch │ ├── 0004-AppImage-Stream.patch │ ├── 0005-AppImage-Menu.cpp.patch │ ├── 0006-SeriousSam.cpp.patch │ ├── 0007-Gfx_Vulkan.cpp.patch │ └── 0008-AppImage-Adapter.cpp.patch ├── serioussam │ ├── SeriousSamTFE-Vk.AppImageBuilder.yml │ ├── io.itch.tx00100xt.serioussam-vk.appdata.xml │ └── io.itch.tx00100xt.serioussam-vk.desktop └── serioussamse │ ├── SeriousSamTSE-Vk.AppImageBuilder.yml │ ├── io.itch.tx00100xt.serioussamse-vk.appdata.xml │ └── io.itch.tx00100xt.serioussamse-vk.desktop ├── cmake ├── FindSDL2.cmake └── FindVulkan.cmake ├── debian ├── README.Debian ├── README.source ├── changelog ├── control ├── copyright ├── docs ├── gbp.conf ├── io.github.tx00100xt.serioussam-vk.appdata.xml ├── manpages ├── patches │ ├── 0001-desktop-file.patch │ ├── 0002-CMakeLists.txt.patch │ ├── 0003-Engine.cpp.patch │ ├── 0004-Engine.h.patch │ ├── 0005-Stream.patch │ ├── 0006-Fix-spelling-error-in-binary.patch │ ├── 0007-SeriousSam.cpp.patch │ ├── 0008-Menu.cpp.patch │ ├── 0009-Game.cpp.patch │ ├── 0010-Adapter.cpp.patch │ ├── 0011-Gfx_Vulkan.cpp.patch │ └── series ├── rules ├── salsa-ci.yml ├── serioussam-vk-ded.6 ├── serioussam-vk-docs.docs ├── serioussam-vk-mkfont.6 ├── serioussam-vk-texconv.6 ├── serioussam-vk.6 ├── serioussamse-vk-ded.6 ├── serioussamse-vk-mkfont.6 ├── serioussamse-vk-texconv.6 ├── serioussamse-vk.6 ├── source │ └── format ├── upstream │ └── metadata └── watch ├── flatpak ├── 0001-CMakeLists.txt.patch ├── 0002-Engine.cpp.patch ├── 0003-desktop-file.patch ├── io.itch.tx00100xt.SeriousSamClassic-VK.metainfo.xml ├── io.itch.tx00100xt.SeriousSamClassic-VK.png └── io.itch.tx00100xt.SeriousSamClassic-VK.yaml ├── man ├── bsd │ ├── serioussam-vk.1 │ └── serioussamclassic-vk.1 ├── deb │ ├── serioussam-vk.1 │ └── serioussamclassic-vk.1 └── gentoo │ └── serioussam-vk.1 ├── run_game.sh ├── run_game_hud.sh ├── run_server.sh └── templates ├── freebsd └── ports │ └── games │ └── serioussam-vk │ ├── Makefile │ ├── distinfo │ ├── pkg-descr │ └── pkg-plist └── openbsd └── ports └── games └── serioussam-vk ├── Makefile ├── distinfo └── pkg ├── DESCR ├── PLIST └── README /.gitattributes: -------------------------------------------------------------------------------- 1 | *.es linguist-language=C++ 2 | -------------------------------------------------------------------------------- /.github/workflows/cibuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/.github/workflows/cibuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/CHANGELOG.old -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Images/samvulkan_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/Images/samvulkan_1.png -------------------------------------------------------------------------------- /Images/samvulkan_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/Images/samvulkan_2.png -------------------------------------------------------------------------------- /Images/samvulkan_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/Images/samvulkan_3.png -------------------------------------------------------------------------------- /Images/samvulkan_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/Images/samvulkan_4.png -------------------------------------------------------------------------------- /Images/samvulkan_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/Images/samvulkan_5.png -------------------------------------------------------------------------------- /Images/samvulkan_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/Images/samvulkan_6.png -------------------------------------------------------------------------------- /Images/samxplus_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/Images/samxplus_1.png -------------------------------------------------------------------------------- /Images/samxplus_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/Images/samxplus_2.png -------------------------------------------------------------------------------- /Images/samxplus_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/Images/samxplus_3.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/README.md -------------------------------------------------------------------------------- /SamTFE/Bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/Controls/00-Default.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/00-Default.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/00-Default.des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/00-Default.des -------------------------------------------------------------------------------- /SamTFE/Controls/01-Keyboard.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/01-Keyboard.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/01-Keyboard.des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/01-Keyboard.des -------------------------------------------------------------------------------- /SamTFE/Controls/02-PantherXL.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/02-PantherXL.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/02-PantherXL.des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/02-PantherXL.des -------------------------------------------------------------------------------- /SamTFE/Controls/05-2nd Mouse.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/05-2nd Mouse.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/05-2nd Mouse.des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/05-2nd Mouse.des -------------------------------------------------------------------------------- /SamTFE/Controls/10-DEN.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/10-DEN.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/10-DEN.des: -------------------------------------------------------------------------------- 1 | DEN's controls 2 | for people whose Q key is broken -------------------------------------------------------------------------------- /SamTFE/Controls/Controls0.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/Controls0.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/Controls1.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/Controls1.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/Controls2.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/Controls2.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/Controls3.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/Controls3.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/Controls4.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/Controls4.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/Controls5.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/Controls5.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/Controls6.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/Controls6.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/Controls7.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/Controls7.ctl -------------------------------------------------------------------------------- /SamTFE/Controls/System/Common.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Controls/System/Common.ctl -------------------------------------------------------------------------------- /SamTFE/Data/Default.ifr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Data/Default.ifr -------------------------------------------------------------------------------- /SamTFE/Data/Defaults/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/Data/IFeel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Data/IFeel.txt -------------------------------------------------------------------------------- /SamTFE/Data/Logitech.ifr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Data/Logitech.ifr -------------------------------------------------------------------------------- /SamTFE/Data/NoCRC.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Data/NoCRC.lst -------------------------------------------------------------------------------- /SamTFE/Data/SED_TipOfTheDay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Data/SED_TipOfTheDay.txt -------------------------------------------------------------------------------- /SamTFE/Data/Var/DefaultPlayer.var: -------------------------------------------------------------------------------- 1 | Serious Sam -------------------------------------------------------------------------------- /SamTFE/Data/Var/Sam_Version.var: -------------------------------------------------------------------------------- 1 | v1.10 2 | -------------------------------------------------------------------------------- /SamTFE/Demos/Default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/Default.ini -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demo0001.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demo0001.dem -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demo0001.des: -------------------------------------------------------------------------------- 1 | Dunes 2 | -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demo0001.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demo0001.ini -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demo0001Tbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demo0001Tbn.tex -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demo0002.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demo0002.dem -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demo0002.des: -------------------------------------------------------------------------------- 1 | Suburbs 2 | -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demo0002.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demo0002.ini -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demo0002Tbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demo0002Tbn.tex -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demo0003.des: -------------------------------------------------------------------------------- 1 | Memphis Suburbs 2 | -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demoMP0001.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demoMP0001.dem -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demoMP0001.des: -------------------------------------------------------------------------------- 1 | Metropolis Coop 2 | -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demoMP0001.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demoMP0001.ini -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demoMP0001Tbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demoMP0001Tbn.tex -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demoMP0002.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demoMP0002.dem -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demoMP0002.des: -------------------------------------------------------------------------------- 1 | Karnak Peaceful Night Coop 2 | -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demoMP0002.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demoMP0002.ini -------------------------------------------------------------------------------- /SamTFE/Demos/auto-demoMP0002Tbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Demos/auto-demoMP0002Tbn.tex -------------------------------------------------------------------------------- /SamTFE/GameAgent/GameAgent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/GameAgent/GameAgent.txt -------------------------------------------------------------------------------- /SamTFE/GameAgent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/GameAgent/main.py -------------------------------------------------------------------------------- /SamTFE/GameAgent/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | python -u main.py -------------------------------------------------------------------------------- /SamTFE/GameAgent/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/GameAgent/server.py -------------------------------------------------------------------------------- /SamTFE/GameAgent/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/GameAgent/user.py -------------------------------------------------------------------------------- /SamTFE/Help/ShellSymbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Help/ShellSymbols.txt -------------------------------------------------------------------------------- /SamTFE/Levels/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/ModEXT.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/Mods/SeriousSam.des: -------------------------------------------------------------------------------- 1 | Serious Sam: The First Encounter -------------------------------------------------------------------------------- /SamTFE/Mods/SeriousSam/BaseBrowseInclude.lst: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /SamTFE/Mods/SeriousSam/BaseWriteInclude.lst: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /SamTFE/Mods/SeriousSamTbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Mods/SeriousSamTbn.tex -------------------------------------------------------------------------------- /SamTFE/Mods/XPLUS.des: -------------------------------------------------------------------------------- 1 | ^cff0000X^c0093FFPLUS 2 | -------------------------------------------------------------------------------- /SamTFE/Mods/XPLUS/Bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/Mods/XPLUSTbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Mods/XPLUSTbn.tex -------------------------------------------------------------------------------- /SamTFE/SE1_10b.gro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/SE1_10b.gro -------------------------------------------------------------------------------- /SamTFE/SaveGame/Network/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/SaveGame/Player0/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/SaveGame/Player1/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/SaveGame/Player2/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/SaveGame/Player3/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/SaveGame/Player4/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/SaveGame/Player5/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/SaveGame/Player6/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/SaveGame/Player7/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/SaveGame/SplitScreen/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/Scripts/Commands/kick.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/Commands/kick.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/Commands/list.ini: -------------------------------------------------------------------------------- 1 | ListPlayers(); 2 | -------------------------------------------------------------------------------- /SamTFE/Scripts/Commands/rkick.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/Commands/rkick.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/Commands/rlist.ini: -------------------------------------------------------------------------------- 1 | Admin("ListPlayers();") 2 | -------------------------------------------------------------------------------- /SamTFE/Scripts/CustomOptions/HUD-Options.des: -------------------------------------------------------------------------------- 1 | Additional display parameters 2 | Customize Screen Elements 3 | -------------------------------------------------------------------------------- /SamTFE/Scripts/Dedicated/DefaultCoop/1_begin.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/Scripts/Dedicated_startup.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/Dedicated_startup.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/GLSettings/I-i740.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/GLSettings/I-i740.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/GLSettings/I-i752.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/GLSettings/I-i752.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/GLSettings/NV-GF.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/GLSettings/NV-GF.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/GLSettings/NV-TNT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/GLSettings/NV-TNT.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/GLSettings/RAM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/GLSettings/RAM.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/GLSettings/S3-S2K.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/GLSettings/S3-S2K.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/GLSettings/S3-S4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/GLSettings/S3-S4.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/Game_startup.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/Game_startup.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/Menu/ApplyShadowmaps.ini: -------------------------------------------------------------------------------- 1 | sam_iVideoSetup=3; 2 | RecacheShadows(); 3 | -------------------------------------------------------------------------------- /SamTFE/Scripts/Menu/ApplyTextures.ini: -------------------------------------------------------------------------------- 1 | sam_iVideoSetup=3; 2 | RefreshTextures(); 3 | -------------------------------------------------------------------------------- /SamTFE/Scripts/Menu/ApplyVideo.ini: -------------------------------------------------------------------------------- 1 | ApplyVideoMode(); 2 | -------------------------------------------------------------------------------- /SamTFE/Scripts/Menu/GameOptions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/Menu/GameOptions.cfg -------------------------------------------------------------------------------- /SamTFE/Scripts/Menu/SPOptions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/Menu/SPOptions.cfg -------------------------------------------------------------------------------- /SamTFE/Scripts/NetSettings/256k-DSL.des: -------------------------------------------------------------------------------- 1 | 256k - DSL 2 | if you have a standard DSL line -------------------------------------------------------------------------------- /SamTFE/Scripts/NetSettings/ISDN.des: -------------------------------------------------------------------------------- 1 | ISDN 2 | if you have an ISDN link -------------------------------------------------------------------------------- /SamTFE/Scripts/NetSettings/ISDN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/NetSettings/ISDN.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/NetSettings/LAN.des: -------------------------------------------------------------------------------- 1 | LAN gaming 2 | use this when playing in LAN -------------------------------------------------------------------------------- /SamTFE/Scripts/NetSettings/LAN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Scripts/NetSettings/LAN.ini -------------------------------------------------------------------------------- /SamTFE/Scripts/WorldEditorKeys/Shift_F2.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SamTFE/Scripts/WorldEditorKeys/Shift_F3.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SamTFE/Scripts/WorldEditorKeys/Shift_F4.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SamTFE/Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /SamTFE/Sources/DecodeReport/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/DecodeReport/StdAfx.h -------------------------------------------------------------------------------- /SamTFE/Sources/Depend/Depend.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Depend/Depend.vcxproj -------------------------------------------------------------------------------- /SamTFE/Sources/Depend/Dependency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Depend/Dependency.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Depend/Dependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Depend/Dependency.h -------------------------------------------------------------------------------- /SamTFE/Sources/Depend/StdH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Depend/StdH.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Depend/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Depend/StdH.h -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/Ecc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/Ecc.vcxproj -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/Ecc.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/Ecc.vcxproj.user -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/Main.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/Main.h -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/Parser.hpp -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/Parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/Parser.y -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/Scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/Scanner.l -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/StdH.h -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/bison.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/bison.simple -------------------------------------------------------------------------------- /SamTFE/Sources/Ecc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Ecc/unistd.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Anim.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Anim.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Assert.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Base.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/CRC.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/CRC.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Console.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/FLEX.skl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/FLEX.skl -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/IFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/IFeel.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/IFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/IFeel.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Input.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Input.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Lists.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Lists.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Lists.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Lists.inl -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Memory.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Parser.y -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Scanner.l -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Serial.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Shell.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Shell.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Stream.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Timer.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Timer.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Timer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Timer.inl -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Types.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Unzip.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Base/Unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Base/Unzip.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Build.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Engine.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Engine.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Engine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Engine.vcxproj -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/GameShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/GameShell.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Graphics/Fog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Graphics/Fog.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Math/AABBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Math/AABBox.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Math/FixInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Math/FixInt.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Math/Float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Math/Float.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Math/Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Math/Float.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Math/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Math/Matrix.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Math/OBBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Math/OBBox.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Math/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Math/Plane.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Math/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Math/Vector.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Models/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Models/Model.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Network/Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Network/Diff.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Ska/AnimSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Ska/AnimSet.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Ska/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Ska/Mesh.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Ska/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Ska/Mesh.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Ska/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Ska/Render.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Ska/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Ska/Skeleton.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Ska/smcPars.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Ska/smcPars.y -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Ska/smcScan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Ska/smcScan.l -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Ska/smcScwin.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Ska/smcScwin.l -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Sound/DSOUND.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Sound/DSOUND.H -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Sound/Wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Sound/Wave.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Sound/Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Sound/Wave.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Sound/eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Sound/eax.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/StdH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/StdH.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/StdH.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/Types.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/World/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/World/World.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/temp.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/adler32.c -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/deflate.c -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/deflate.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/inffast.c -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/inffast.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/inflate.c -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/infutil.c -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/infutil.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/trees.c -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/trees.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/uncompr.c -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/zconf.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/zlib.h -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/zutil.c -------------------------------------------------------------------------------- /SamTFE/Sources/Engine/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Engine/zlib/zutil.h -------------------------------------------------------------------------------- /SamTFE/Sources/EngineGui/EngineGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EngineGui/EngineGUI.h -------------------------------------------------------------------------------- /SamTFE/Sources/EngineGui/Graphics.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EngineGui/Graphics.rc -------------------------------------------------------------------------------- /SamTFE/Sources/EngineGui/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EngineGui/ReadMe.txt -------------------------------------------------------------------------------- /SamTFE/Sources/EngineGui/StdH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EngineGui/StdH.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/EngineGui/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EngineGui/StdH.h -------------------------------------------------------------------------------- /SamTFE/Sources/EngineGui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EngineGui/resource.h -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Acid.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Acid.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/AirWave.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/AirWave.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/AmmoItem.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/AmmoItem.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/AmmoPack.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/AmmoPack.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/ArmorItem.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/ArmorItem.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Beast.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Beast.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/BigHead.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/BigHead.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Boneman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Boneman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Bouncer.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Bouncer.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Bullet.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Bullet.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Camera.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Camera.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Catman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Catman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Common/HUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Common/HUD.h -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Copier.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Copier.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Counter.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Counter.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Cyborg.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Cyborg.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Damager.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Damager.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Debris.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Debris.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Devil.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Devil.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Dragonman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Dragonman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Effector.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Effector.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Elemental.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Elemental.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/EnemyBase.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/EnemyBase.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/EnemyDive.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/EnemyDive.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/EnemyFly.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/EnemyFly.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Eruptor.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Eruptor.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Eyeman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Eyeman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Fish.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Fish.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Fishman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Fishman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Flame.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Flame.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/FogMarker.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/FogMarker.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Gizmo.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Gizmo.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Global.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Global.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Headman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Headman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Huanman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Huanman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Item.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Item.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/KeyItem.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/KeyItem.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Light.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Light.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Lightning.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Lightning.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Mamut.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Mamut.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Mamutman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Mamutman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Mantaman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Mantaman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Marker.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Marker.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Pendulum.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Pendulum.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Pipebomb.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Pipebomb.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Player.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Player.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Reminder.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Reminder.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Scorpman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Scorpman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Ship.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Ship.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/StdH/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/StdH/StdH.h -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Switch.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Switch.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Teleport.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Teleport.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Trigger.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Trigger.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Twister.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Twister.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Walker.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Walker.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Watcher.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Watcher.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Water.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Water.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Werebull.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Werebull.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/Woman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/Woman.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/WorldBase.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/WorldBase.es -------------------------------------------------------------------------------- /SamTFE/Sources/Entities/WorldLink.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Entities/WorldLink.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Beast.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Beast.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/BigHead.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/BigHead.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Boneman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Boneman.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Bouncer.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Bouncer.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Bullet.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Bullet.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Camera.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Camera.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Copier.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Copier.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Counter.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Counter.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Damager.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Damager.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Debris.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Debris.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Demon.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Demon.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Devil.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Devil.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Eruptor.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Eruptor.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Eyeman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Eyeman.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Fish.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Fish.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Flame.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Flame.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Gizmo.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Gizmo.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Global.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Global.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Grunt.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Grunt.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Guffy.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Guffy.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Headman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Headman.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Item.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Item.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/KeyItem.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/KeyItem.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Light.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Light.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Marker.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Marker.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Player.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Player.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Santa.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Santa.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Ship.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Ship.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Shooter.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Shooter.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Spinner.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Spinner.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Switch.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Switch.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Terrain.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Terrain.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Trigger.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Trigger.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Twister.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Twister.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Walker.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Walker.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Watcher.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Watcher.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Water.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Water.es -------------------------------------------------------------------------------- /SamTFE/Sources/EntitiesMP/Woman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/EntitiesMP/Woman.es -------------------------------------------------------------------------------- /SamTFE/Sources/External/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/External/SDL2/SDL.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameGUIMP/GameGUI.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameGUIMP/GameGUI.clw -------------------------------------------------------------------------------- /SamTFE/Sources/GameGUIMP/GameGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameGUIMP/GameGUI.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameGUIMP/GameGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameGUIMP/GameGUI.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameGUIMP/GameGUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameGUIMP/GameGUI.rc -------------------------------------------------------------------------------- /SamTFE/Sources/GameGUIMP/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameGUIMP/ReadMe.txt -------------------------------------------------------------------------------- /SamTFE/Sources/GameGUIMP/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameGUIMP/StdAfx.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameGUIMP/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameGUIMP/StdAfx.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameGUIMP/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameGUIMP/resource.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Camera.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Camera.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/CompMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/CompMessage.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/CompModels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/CompModels.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Computer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Computer.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Computer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Computer.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Console.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Controls.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Data.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Game.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Game.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Game.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Game.user -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Game.vcxproj -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/LCDDrawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/LCDDrawing.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/LCDDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/LCDDrawing.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Map.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/Render.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/SEColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/SEColors.h -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/StdAfx.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/GameMP/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/GameMP/StdAfx.h -------------------------------------------------------------------------------- /SamTFE/Sources/LWSkaExporter/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/LWSkaExporter/Base.h -------------------------------------------------------------------------------- /SamTFE/Sources/LWSkaExporter/serv.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | _mod_descrip 4 | -------------------------------------------------------------------------------- /SamTFE/Sources/MakeFONT/MakeFONT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/MakeFONT/MakeFONT.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/ChildFrm.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/ChildFrm.h -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/MainFrm.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/MainFrm.h -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/MakeHelp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/MakeHelp.bat -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/Modeler.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/Modeler.aps -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/Modeler.clw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/Modeler.clw -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/Modeler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/Modeler.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/Modeler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/Modeler.h -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/Modeler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/Modeler.rc -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/ModelerDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/ModelerDoc.h -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/ModelerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/ModelerView.h -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/ReadMe.txt -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/ScriptDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/ScriptDoc.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/ScriptDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/ScriptDoc.h -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/ScriptView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/ScriptView.h -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/SkyFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/SkyFloat.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/SkyFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/SkyFloat.h -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/StdAfx.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/StdAfx.h -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/hlp/Scmax.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/hlp/Scmax.bmp -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/hlp/Scmin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/hlp/Scmin.bmp -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/res/icon1.ico -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/res/pick.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/res/pick.ico -------------------------------------------------------------------------------- /SamTFE/Sources/Modeler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Modeler/resource.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Editor/Axis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Editor/Axis.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Editor/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Editor/Floor.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Editor/Fog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Editor/Fog.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Editor/Fog.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Editor/Fog.ini -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Editor/Haze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Editor/Haze.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Editor/Lamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Editor/Lamp.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/IHVTest/Bump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/IHVTest/Bump.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/IHVTest/Flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/IHVTest/Flat.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/MenuOld/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/MenuOld/Key.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Player_old/SeriousSammy/Head.ini: -------------------------------------------------------------------------------- 1 | c`4 -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Test/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Test/Box.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Test/Box.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Test/Box.ini -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Test/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Test/Sphere.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Test/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Test/Tree.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Test/Tree.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Test/Tree.ini -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Test/Vase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Test/Vase.h -------------------------------------------------------------------------------- /SamTFE/Sources/Models/Test/Vase.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Models/Test/Vase.ini -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/RCon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/RCon.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/RCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/RCon.h -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/RCon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/RCon.rc -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/RCon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/RCon.vcxproj -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/RConDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/RConDlg.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/RConDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/RConDlg.h -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/ReadMe.txt -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/StdAfx.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/StdAfx.h -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/res/RCon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/res/RCon.ico -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/res/RCon.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/res/RCon.rc2 -------------------------------------------------------------------------------- /SamTFE/Sources/RCon/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/RCon/resource.h -------------------------------------------------------------------------------- /SamTFE/Sources/SamTFE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SamTFE.sln -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/ArrowDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/ArrowDir.h -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/CmdLine.h -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/Credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/Credits.h -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/FileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/FileInfo.h -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/Menu.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/Menu.h -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/Splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/Splash.bmp -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/StdH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/StdH.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/StdH.h -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/VarList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/VarList.h -------------------------------------------------------------------------------- /SamTFE/Sources/SeriousSam/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/SeriousSam/resource.h -------------------------------------------------------------------------------- /SamTFE/Sources/Shaders/AddShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Shaders/AddShader.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Shaders/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Shaders/Common.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Shaders/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Shaders/Common.h -------------------------------------------------------------------------------- /SamTFE/Sources/Shaders/Specular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Shaders/Specular.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Shaders/StdH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Shaders/StdH.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/Shaders/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/Shaders/StdH.h -------------------------------------------------------------------------------- /SamTFE/Sources/TEXConv/TEXConv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/TEXConv/TEXConv.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/WorldEditor/Browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/WorldEditor/Browser.h -------------------------------------------------------------------------------- /SamTFE/Sources/WorldEditor/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/WorldEditor/MainFrm.h -------------------------------------------------------------------------------- /SamTFE/Sources/WorldEditor/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/WorldEditor/StdAfx.h -------------------------------------------------------------------------------- /SamTFE/Sources/WorldEditor/Viewers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/WorldEditor/Viewers.h -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/COPYING -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/README -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/amp11lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/amp11lib.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/amp11lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/amp11lib.h -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/amp1dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/amp1dec.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/amp2dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/amp2dec.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/amp3dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/amp3dec.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/ampdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/ampdec.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/ampdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/ampdec.h -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/ampsynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/ampsynth.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/mpgsplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/mpgsplit.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/mpgsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/mpgsplit.h -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/timer.cpp -------------------------------------------------------------------------------- /SamTFE/Sources/amp11lib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/amp11lib/timer.h -------------------------------------------------------------------------------- /SamTFE/Sources/bison.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/bison.simple -------------------------------------------------------------------------------- /SamTFE/Sources/build-linux32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/build-linux32.sh -------------------------------------------------------------------------------- /SamTFE/Sources/build-linux64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/build-linux64.sh -------------------------------------------------------------------------------- /SamTFE/Sources/cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /SamTFE/Sources/libogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libogg/AUTHORS -------------------------------------------------------------------------------- /SamTFE/Sources/libogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libogg/CHANGES -------------------------------------------------------------------------------- /SamTFE/Sources/libogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libogg/COPYING -------------------------------------------------------------------------------- /SamTFE/Sources/libogg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libogg/README -------------------------------------------------------------------------------- /SamTFE/Sources/libogg/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libogg/ogg.def -------------------------------------------------------------------------------- /SamTFE/Sources/libogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libogg/src/bitwise.c -------------------------------------------------------------------------------- /SamTFE/Sources/libogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libogg/src/framing.c -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/AUTHORS -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/CHANGES -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/COPYING -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/README -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/block.c -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/info.c -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/lpc.c -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/lpc.h -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/lsp.c -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/lsp.h -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/mdct.c -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/mdct.h -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/misc.h -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/os.h -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/psy.c -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/psy.h -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/res0.c -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/lib/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/lib/tone.c -------------------------------------------------------------------------------- /SamTFE/Sources/libvorbis/vorbis.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Sources/libvorbis/vorbis.def -------------------------------------------------------------------------------- /SamTFE/Temp/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTFE/Tools.Win32/Bison.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Tools.Win32/Bison.exe -------------------------------------------------------------------------------- /SamTFE/Tools.Win32/Flex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Tools.Win32/Flex.exe -------------------------------------------------------------------------------- /SamTFE/Tools.Win32/bison.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Tools.Win32/bison.zip -------------------------------------------------------------------------------- /SamTFE/Tools.Win32/flex.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/Tools.Win32/flex.zip -------------------------------------------------------------------------------- /SamTFE/serioussam.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/serioussam.desktop -------------------------------------------------------------------------------- /SamTFE/serioussam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTFE/serioussam.png -------------------------------------------------------------------------------- /SamTSE/Bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/Controls/00-Default.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/00-Default.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/00-Default.des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/00-Default.des -------------------------------------------------------------------------------- /SamTSE/Controls/01-Keyboard.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/01-Keyboard.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/02-PantherXL.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/02-PantherXL.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/05-2nd Mouse.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/05-2nd Mouse.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/10-DEN.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/10-DEN.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/Controls0.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/Controls0.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/Controls1.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/Controls1.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/Controls2.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/Controls2.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/Controls3.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/Controls3.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/Controls4.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/Controls4.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/Controls5.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/Controls5.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/Controls6.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/Controls6.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/Controls7.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/Controls7.ctl -------------------------------------------------------------------------------- /SamTSE/Controls/System/Common.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Controls/System/Common.ctl -------------------------------------------------------------------------------- /SamTSE/Data/Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Data/Credits.txt -------------------------------------------------------------------------------- /SamTSE/Data/Default.ifr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Data/Default.ifr -------------------------------------------------------------------------------- /SamTSE/Data/Defaults/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/Data/IFeel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Data/IFeel.txt -------------------------------------------------------------------------------- /SamTSE/Data/Logitech.ifr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Data/Logitech.ifr -------------------------------------------------------------------------------- /SamTSE/Data/NoCRC.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Data/NoCRC.lst -------------------------------------------------------------------------------- /SamTSE/Data/SED_TipOfTheDay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Data/SED_TipOfTheDay.txt -------------------------------------------------------------------------------- /SamTSE/Data/Var/DefaultPlayer.var: -------------------------------------------------------------------------------- 1 | Serious Sam -------------------------------------------------------------------------------- /SamTSE/Data/Var/Sam_Version.var: -------------------------------------------------------------------------------- 1 | v1.10 2 | -------------------------------------------------------------------------------- /SamTSE/Demos/Default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/Default.ini -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demo0001.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demo0001.dem -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demo0001.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demo0001.ini -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demo0001Tbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demo0001Tbn.tex -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demo0002.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demo0002.dem -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demo0002.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demo0002.ini -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demo0002Tbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demo0002Tbn.tex -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demo0003.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demo0003.dem -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demo0003.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demo0003.ini -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demo0003Tbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demo0003Tbn.tex -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demoMP0001.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demoMP0001.dem -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demoMP0001.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demoMP0001.ini -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demoMP0001Tbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demoMP0001Tbn.tex -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demoMP0002.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demoMP0002.dem -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demoMP0002.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demoMP0002.ini -------------------------------------------------------------------------------- /SamTSE/Demos/auto-demoMP0002Tbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Demos/auto-demoMP0002Tbn.tex -------------------------------------------------------------------------------- /SamTSE/GameAgent/GameAgent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/GameAgent/GameAgent.txt -------------------------------------------------------------------------------- /SamTSE/GameAgent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/GameAgent/main.py -------------------------------------------------------------------------------- /SamTSE/GameAgent/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | python -u main.py -------------------------------------------------------------------------------- /SamTSE/GameAgent/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/GameAgent/server.py -------------------------------------------------------------------------------- /SamTSE/GameAgent/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/GameAgent/user.py -------------------------------------------------------------------------------- /SamTSE/Help/ShellSymbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Help/ShellSymbols.txt -------------------------------------------------------------------------------- /SamTSE/Levels/LevelsMP/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/ModEXT.txt: -------------------------------------------------------------------------------- 1 | MP -------------------------------------------------------------------------------- /SamTSE/Mods/SecondEncounter.des: -------------------------------------------------------------------------------- 1 | Serious Sam: The Second Encounter 2 | -------------------------------------------------------------------------------- /SamTSE/Mods/SecondEncounter/BaseBrowseInclude.lst: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /SamTSE/Mods/SecondEncounter/BaseWriteInclude.lst: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /SamTSE/Mods/SecondEncounterTbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Mods/SecondEncounterTbn.tex -------------------------------------------------------------------------------- /SamTSE/Mods/XPLUS.des: -------------------------------------------------------------------------------- 1 | ^cff0000X^c0093FFPLUS 2 | -------------------------------------------------------------------------------- /SamTSE/Mods/XPLUS/Bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/Mods/XPLUSTbn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Mods/XPLUSTbn.tex -------------------------------------------------------------------------------- /SamTSE/SE1_10b.gro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/SE1_10b.gro -------------------------------------------------------------------------------- /SamTSE/SaveGame/Network/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/SaveGame/Player0/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/SaveGame/Player1/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/SaveGame/Player2/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/SaveGame/Player3/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/SaveGame/Player4/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/SaveGame/Player5/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/SaveGame/Player6/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/SaveGame/Player7/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/SaveGame/SplitScreen/Quick/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/Scripts/Addons/Default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/Addons/Default.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/Addons/Extreme.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/Addons/Extreme.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/Addons/SafeMode.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/Addons/SafeMode.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/Commands/kick.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/Commands/kick.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/Commands/list.ini: -------------------------------------------------------------------------------- 1 | ListPlayers(); 2 | -------------------------------------------------------------------------------- /SamTSE/Scripts/Commands/rkick.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/Commands/rkick.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/Commands/rlist.ini: -------------------------------------------------------------------------------- 1 | Admin("ListPlayers();") 2 | -------------------------------------------------------------------------------- /SamTSE/Scripts/CustomOptions/HUD-Options.des: -------------------------------------------------------------------------------- 1 | Additional display parameters 2 | Customize Screen Elements 3 | -------------------------------------------------------------------------------- /SamTSE/Scripts/Dedicated/DefaultCoop/1_begin.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/Scripts/Dedicated_startup.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/Dedicated_startup.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/GLSettings/I-i740.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/GLSettings/I-i740.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/GLSettings/I-i752.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/GLSettings/I-i752.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/GLSettings/NV-GF.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/GLSettings/NV-GF.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/GLSettings/NV-GF3.INI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/GLSettings/NV-GF3.INI -------------------------------------------------------------------------------- /SamTSE/Scripts/GLSettings/NV-TNT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/GLSettings/NV-TNT.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/GLSettings/RAM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/GLSettings/RAM.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/GLSettings/S3-S2K.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/GLSettings/S3-S2K.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/GLSettings/S3-S4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/GLSettings/S3-S4.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/Game_startup.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/Game_startup.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/Menu/ApplyShadowmaps.ini: -------------------------------------------------------------------------------- 1 | sam_iVideoSetup=3; 2 | RecacheShadows(); 3 | -------------------------------------------------------------------------------- /SamTSE/Scripts/Menu/ApplyTextures.ini: -------------------------------------------------------------------------------- 1 | sam_iVideoSetup=3; 2 | RefreshTextures(); 3 | -------------------------------------------------------------------------------- /SamTSE/Scripts/Menu/ApplyVideo.ini: -------------------------------------------------------------------------------- 1 | ApplyVideoMode(); 2 | -------------------------------------------------------------------------------- /SamTSE/Scripts/Menu/GameOptions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/Menu/GameOptions.cfg -------------------------------------------------------------------------------- /SamTSE/Scripts/Menu/SPOptions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/Menu/SPOptions.cfg -------------------------------------------------------------------------------- /SamTSE/Scripts/NetSettings/256k-DSL.des: -------------------------------------------------------------------------------- 1 | 256k - DSL 2 | if you have a standard DSL line -------------------------------------------------------------------------------- /SamTSE/Scripts/NetSettings/ISDN.des: -------------------------------------------------------------------------------- 1 | ISDN 2 | if you have an ISDN link -------------------------------------------------------------------------------- /SamTSE/Scripts/NetSettings/ISDN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/NetSettings/ISDN.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/NetSettings/LAN.des: -------------------------------------------------------------------------------- 1 | LAN gaming 2 | use this when playing in LAN -------------------------------------------------------------------------------- /SamTSE/Scripts/NetSettings/LAN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Scripts/NetSettings/LAN.ini -------------------------------------------------------------------------------- /SamTSE/Scripts/WorldEditorKeys/Shift_F2.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SamTSE/Scripts/WorldEditorKeys/Shift_F3.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SamTSE/Scripts/WorldEditorKeys/Shift_F4.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SamTSE/Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /SamTSE/Sources/DecodeReport/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/DecodeReport/StdAfx.h -------------------------------------------------------------------------------- /SamTSE/Sources/Depend/Depend.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Depend/Depend.vcxproj -------------------------------------------------------------------------------- /SamTSE/Sources/Depend/Dependency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Depend/Dependency.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Depend/Dependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Depend/Dependency.h -------------------------------------------------------------------------------- /SamTSE/Sources/Depend/StdH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Depend/StdH.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Depend/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Depend/StdH.h -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/Ecc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/Ecc.vcxproj -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/Ecc.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/Ecc.vcxproj.user -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/Main.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/Main.h -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/Parser.hpp -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/Parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/Parser.y -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/Scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/Scanner.l -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/StdH.h -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/bison.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/bison.simple -------------------------------------------------------------------------------- /SamTSE/Sources/Ecc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Ecc/unistd.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Anim.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Anim.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Assert.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Base.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/CRC.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/CRC.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Console.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/FLEX.skl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/FLEX.skl -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/IFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/IFeel.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/IFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/IFeel.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Input.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Input.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Lists.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Lists.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Lists.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Lists.inl -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Memory.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Parser.y -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Scanner.l -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Serial.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Shell.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Shell.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Stream.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Timer.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Timer.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Timer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Timer.inl -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Types.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Unzip.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Base/Unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Base/Unzip.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Build.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Engine.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Engine.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Engine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Engine.vcxproj -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/GameShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/GameShell.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Graphics/Fog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Graphics/Fog.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Math/AABBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Math/AABBox.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Math/FixInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Math/FixInt.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Math/Float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Math/Float.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Math/Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Math/Float.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Math/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Math/Matrix.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Math/OBBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Math/OBBox.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Math/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Math/Plane.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Math/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Math/Vector.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Models/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Models/Model.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Network/Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Network/Diff.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Ska/AnimSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Ska/AnimSet.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Ska/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Ska/Mesh.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Ska/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Ska/Mesh.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Ska/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Ska/Render.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Ska/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Ska/Skeleton.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Ska/smcPars.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Ska/smcPars.y -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Ska/smcScan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Ska/smcScan.l -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Ska/smcScwin.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Ska/smcScwin.l -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Sound/DSOUND.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Sound/DSOUND.H -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Sound/Wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Sound/Wave.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Sound/Wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Sound/Wave.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Sound/eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Sound/eax.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/StdH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/StdH.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/StdH.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/Types.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/World/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/World/World.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/temp.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/adler32.c -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/deflate.c -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/deflate.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/inffast.c -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/inffast.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/inflate.c -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/infutil.c -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/infutil.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/trees.c -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/trees.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/uncompr.c -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/zconf.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/zlib.h -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/zutil.c -------------------------------------------------------------------------------- /SamTSE/Sources/Engine/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Engine/zlib/zutil.h -------------------------------------------------------------------------------- /SamTSE/Sources/EngineGui/EngineGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/EngineGui/EngineGUI.h -------------------------------------------------------------------------------- /SamTSE/Sources/EngineGui/Graphics.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/EngineGui/Graphics.rc -------------------------------------------------------------------------------- /SamTSE/Sources/EngineGui/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/EngineGui/ReadMe.txt -------------------------------------------------------------------------------- /SamTSE/Sources/EngineGui/StdH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/EngineGui/StdH.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/EngineGui/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/EngineGui/StdH.h -------------------------------------------------------------------------------- /SamTSE/Sources/EngineGui/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/EngineGui/resource.h -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Acid.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Acid.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/AirWave.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/AirWave.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/AmmoItem.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/AmmoItem.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/AmmoPack.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/AmmoPack.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/ArmorItem.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/ArmorItem.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Beast.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Beast.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/BigHead.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/BigHead.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Boneman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Boneman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Bouncer.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Bouncer.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Bullet.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Bullet.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Camera.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Camera.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Catman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Catman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Common/HUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Common/HUD.h -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Copier.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Copier.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Counter.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Counter.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Cyborg.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Cyborg.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Damager.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Damager.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Debris.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Debris.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Devil.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Devil.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Dragonman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Dragonman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Effector.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Effector.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Elemental.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Elemental.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/EnemyBase.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/EnemyBase.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/EnemyDive.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/EnemyDive.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/EnemyFly.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/EnemyFly.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Eruptor.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Eruptor.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Eyeman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Eyeman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Fish.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Fish.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Fishman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Fishman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Flame.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Flame.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/FogMarker.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/FogMarker.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Gizmo.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Gizmo.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Global.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Global.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Headman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Headman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Huanman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Huanman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Item.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Item.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/KeyItem.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/KeyItem.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Light.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Light.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Lightning.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Lightning.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Mamut.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Mamut.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Mamutman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Mamutman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Mantaman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Mantaman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Marker.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Marker.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Pendulum.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Pendulum.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Pipebomb.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Pipebomb.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Player.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Player.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Reminder.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Reminder.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Scorpman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Scorpman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Ship.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Ship.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/StdH/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/StdH/StdH.h -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Switch.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Switch.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Teleport.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Teleport.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Trigger.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Trigger.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Twister.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Twister.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Walker.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Walker.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Watcher.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Watcher.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Water.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Water.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Werebull.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Werebull.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/Woman.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/Woman.es -------------------------------------------------------------------------------- /SamTSE/Sources/Entities/WorldBase.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Entities/WorldBase.es -------------------------------------------------------------------------------- /SamTSE/Sources/EntitiesMP/Fish.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/EntitiesMP/Fish.es -------------------------------------------------------------------------------- /SamTSE/Sources/EntitiesMP/Item.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/EntitiesMP/Item.es -------------------------------------------------------------------------------- /SamTSE/Sources/EntitiesMP/Ship.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/EntitiesMP/Ship.es -------------------------------------------------------------------------------- /SamTSE/Sources/GameGUIMP/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameGUIMP/StdAfx.h -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Camera.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Camera.h -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Computer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Computer.h -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Console.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Data.h -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Game.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Game.h -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Game.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Game.user -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Map.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/Render.h -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/SEColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/SEColors.h -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/StdAfx.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/GameMP/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/GameMP/StdAfx.h -------------------------------------------------------------------------------- /SamTSE/Sources/LWSkaExporter/serv.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | _mod_descrip 4 | -------------------------------------------------------------------------------- /SamTSE/Sources/Modeler/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Modeler/ChildFrm.h -------------------------------------------------------------------------------- /SamTSE/Sources/Modeler/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Modeler/MainFrm.h -------------------------------------------------------------------------------- /SamTSE/Sources/Modeler/Modeler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Modeler/Modeler.h -------------------------------------------------------------------------------- /SamTSE/Sources/Modeler/Modeler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Modeler/Modeler.rc -------------------------------------------------------------------------------- /SamTSE/Sources/Modeler/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Modeler/ReadMe.txt -------------------------------------------------------------------------------- /SamTSE/Sources/Modeler/SkyFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Modeler/SkyFloat.h -------------------------------------------------------------------------------- /SamTSE/Sources/Modeler/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Modeler/StdAfx.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Modeler/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Modeler/StdAfx.h -------------------------------------------------------------------------------- /SamTSE/Sources/Modeler/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Modeler/resource.h -------------------------------------------------------------------------------- /SamTSE/Sources/Models/Player_old/SeriousSammy/Head.ini: -------------------------------------------------------------------------------- 1 | c`4 -------------------------------------------------------------------------------- /SamTSE/Sources/Models/Test/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Models/Test/Box.h -------------------------------------------------------------------------------- /SamTSE/Sources/Models/Test/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Models/Test/Tree.h -------------------------------------------------------------------------------- /SamTSE/Sources/Models/Test/Vase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Models/Test/Vase.h -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/RCon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/RCon.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/RCon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/RCon.h -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/RCon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/RCon.rc -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/RCon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/RCon.vcxproj -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/RConDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/RConDlg.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/RConDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/RConDlg.h -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/ReadMe.txt -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/StdAfx.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/StdAfx.h -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/res/RCon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/res/RCon.ico -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/res/RCon.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/res/RCon.rc2 -------------------------------------------------------------------------------- /SamTSE/Sources/RCon/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/RCon/resource.h -------------------------------------------------------------------------------- /SamTSE/Sources/SamTSE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/SamTSE.sln -------------------------------------------------------------------------------- /SamTSE/Sources/SeriousSam/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/SeriousSam/Menu.h -------------------------------------------------------------------------------- /SamTSE/Sources/SeriousSam/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/SeriousSam/StdH.h -------------------------------------------------------------------------------- /SamTSE/Sources/Shaders/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Shaders/Common.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Shaders/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Shaders/Common.h -------------------------------------------------------------------------------- /SamTSE/Sources/Shaders/StdH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Shaders/StdH.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/Shaders/StdH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/Shaders/StdH.h -------------------------------------------------------------------------------- /SamTSE/Sources/amp11lib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/amp11lib/COPYING -------------------------------------------------------------------------------- /SamTSE/Sources/amp11lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/amp11lib/README -------------------------------------------------------------------------------- /SamTSE/Sources/amp11lib/ampdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/amp11lib/ampdec.h -------------------------------------------------------------------------------- /SamTSE/Sources/amp11lib/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/amp11lib/timer.cpp -------------------------------------------------------------------------------- /SamTSE/Sources/amp11lib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/amp11lib/timer.h -------------------------------------------------------------------------------- /SamTSE/Sources/bison.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/bison.simple -------------------------------------------------------------------------------- /SamTSE/Sources/build-linux32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/build-linux32.sh -------------------------------------------------------------------------------- /SamTSE/Sources/build-linux64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/build-linux64.sh -------------------------------------------------------------------------------- /SamTSE/Sources/libogg/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libogg/AUTHORS -------------------------------------------------------------------------------- /SamTSE/Sources/libogg/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libogg/CHANGES -------------------------------------------------------------------------------- /SamTSE/Sources/libogg/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libogg/COPYING -------------------------------------------------------------------------------- /SamTSE/Sources/libogg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libogg/README -------------------------------------------------------------------------------- /SamTSE/Sources/libogg/ogg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libogg/ogg.def -------------------------------------------------------------------------------- /SamTSE/Sources/libvorbis/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libvorbis/AUTHORS -------------------------------------------------------------------------------- /SamTSE/Sources/libvorbis/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libvorbis/CHANGES -------------------------------------------------------------------------------- /SamTSE/Sources/libvorbis/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libvorbis/COPYING -------------------------------------------------------------------------------- /SamTSE/Sources/libvorbis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libvorbis/README -------------------------------------------------------------------------------- /SamTSE/Sources/libvorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Sources/libvorbis/lib/os.h -------------------------------------------------------------------------------- /SamTSE/Temp/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SamTSE/Tools.Win32/Bison.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Tools.Win32/Bison.exe -------------------------------------------------------------------------------- /SamTSE/Tools.Win32/Flex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Tools.Win32/Flex.exe -------------------------------------------------------------------------------- /SamTSE/Tools.Win32/bison.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Tools.Win32/bison.zip -------------------------------------------------------------------------------- /SamTSE/Tools.Win32/flex.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/Tools.Win32/flex.zip -------------------------------------------------------------------------------- /SamTSE/serioussamse.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/serioussamse.desktop -------------------------------------------------------------------------------- /SamTSE/serioussamse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/SamTSE/serioussamse.png -------------------------------------------------------------------------------- /cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/FindVulkan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/cmake/FindVulkan.cmake -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/gbp.conf -------------------------------------------------------------------------------- /debian/manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/manpages -------------------------------------------------------------------------------- /debian/patches/0005-Stream.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/patches/0005-Stream.patch -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/patches/series -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/salsa-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/salsa-ci.yml -------------------------------------------------------------------------------- /debian/serioussam-vk-ded.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/serioussam-vk-ded.6 -------------------------------------------------------------------------------- /debian/serioussam-vk-docs.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/serioussam-vk-docs.docs -------------------------------------------------------------------------------- /debian/serioussam-vk-mkfont.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/serioussam-vk-mkfont.6 -------------------------------------------------------------------------------- /debian/serioussam-vk-texconv.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/serioussam-vk-texconv.6 -------------------------------------------------------------------------------- /debian/serioussam-vk.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/serioussam-vk.6 -------------------------------------------------------------------------------- /debian/serioussamse-vk-ded.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/serioussamse-vk-ded.6 -------------------------------------------------------------------------------- /debian/serioussamse-vk-mkfont.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/serioussamse-vk-mkfont.6 -------------------------------------------------------------------------------- /debian/serioussamse-vk-texconv.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/serioussamse-vk-texconv.6 -------------------------------------------------------------------------------- /debian/serioussamse-vk.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/serioussamse-vk.6 -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/upstream/metadata -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/debian/watch -------------------------------------------------------------------------------- /flatpak/0001-CMakeLists.txt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/flatpak/0001-CMakeLists.txt.patch -------------------------------------------------------------------------------- /flatpak/0002-Engine.cpp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/flatpak/0002-Engine.cpp.patch -------------------------------------------------------------------------------- /flatpak/0003-desktop-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/flatpak/0003-desktop-file.patch -------------------------------------------------------------------------------- /man/bsd/serioussam-vk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/man/bsd/serioussam-vk.1 -------------------------------------------------------------------------------- /man/bsd/serioussamclassic-vk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/man/bsd/serioussamclassic-vk.1 -------------------------------------------------------------------------------- /man/deb/serioussam-vk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/man/deb/serioussam-vk.1 -------------------------------------------------------------------------------- /man/deb/serioussamclassic-vk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/man/deb/serioussamclassic-vk.1 -------------------------------------------------------------------------------- /man/gentoo/serioussam-vk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/man/gentoo/serioussam-vk.1 -------------------------------------------------------------------------------- /run_game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/run_game.sh -------------------------------------------------------------------------------- /run_game_hud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/run_game_hud.sh -------------------------------------------------------------------------------- /run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tx00100xt/SeriousSamClassic-VK/HEAD/run_server.sh --------------------------------------------------------------------------------