├── .gitignore ├── DX6Sharp.sln ├── DX6Sharp ├── D3D.cpp ├── DSound.cpp ├── DX6Sharp.vcxproj ├── DX6Sharp.vcxproj.filters ├── Misc.cpp ├── dxsharp.h └── pch.cpp ├── DX6SharpW98 ├── AssemblyInfo.cpp ├── DX6SharpW98.sln ├── DX6SharpW98.vcproj └── ReadMe.txt ├── Planes3D ├── Planes3D.csproj ├── Properties │ └── AssemblyInfo.cs ├── Source │ ├── Engine.cs │ ├── Game │ │ ├── Airplane.cs │ │ ├── Enemy.cs │ │ ├── Game.cs │ │ ├── GameObject.cs │ │ ├── Scene.cs │ │ └── Water.cs │ ├── Graphics │ │ ├── Frustum.cs │ │ ├── Graphics.cs │ │ ├── Material.cs │ │ ├── Mesh.cs │ │ ├── Skybox.cs │ │ ├── Smd.cs │ │ └── Terrain.cs │ ├── Input.cs │ ├── Log.cs │ ├── Math.cs │ ├── Program.cs │ └── Sound │ │ └── SoundDevice.cs └── app.config └── TexTool ├── Properties └── AssemblyInfo.cs ├── Source └── Program.cs └── TexTool.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/.gitignore -------------------------------------------------------------------------------- /DX6Sharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6Sharp.sln -------------------------------------------------------------------------------- /DX6Sharp/D3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6Sharp/D3D.cpp -------------------------------------------------------------------------------- /DX6Sharp/DSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6Sharp/DSound.cpp -------------------------------------------------------------------------------- /DX6Sharp/DX6Sharp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6Sharp/DX6Sharp.vcxproj -------------------------------------------------------------------------------- /DX6Sharp/DX6Sharp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6Sharp/DX6Sharp.vcxproj.filters -------------------------------------------------------------------------------- /DX6Sharp/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6Sharp/Misc.cpp -------------------------------------------------------------------------------- /DX6Sharp/dxsharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6Sharp/dxsharp.h -------------------------------------------------------------------------------- /DX6Sharp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6Sharp/pch.cpp -------------------------------------------------------------------------------- /DX6SharpW98/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6SharpW98/AssemblyInfo.cpp -------------------------------------------------------------------------------- /DX6SharpW98/DX6SharpW98.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6SharpW98/DX6SharpW98.sln -------------------------------------------------------------------------------- /DX6SharpW98/DX6SharpW98.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6SharpW98/DX6SharpW98.vcproj -------------------------------------------------------------------------------- /DX6SharpW98/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/DX6SharpW98/ReadMe.txt -------------------------------------------------------------------------------- /Planes3D/Planes3D.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Planes3D.csproj -------------------------------------------------------------------------------- /Planes3D/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Planes3D/Source/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Engine.cs -------------------------------------------------------------------------------- /Planes3D/Source/Game/Airplane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Game/Airplane.cs -------------------------------------------------------------------------------- /Planes3D/Source/Game/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Game/Enemy.cs -------------------------------------------------------------------------------- /Planes3D/Source/Game/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Game/Game.cs -------------------------------------------------------------------------------- /Planes3D/Source/Game/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Game/GameObject.cs -------------------------------------------------------------------------------- /Planes3D/Source/Game/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Game/Scene.cs -------------------------------------------------------------------------------- /Planes3D/Source/Game/Water.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Game/Water.cs -------------------------------------------------------------------------------- /Planes3D/Source/Graphics/Frustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Graphics/Frustum.cs -------------------------------------------------------------------------------- /Planes3D/Source/Graphics/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Graphics/Graphics.cs -------------------------------------------------------------------------------- /Planes3D/Source/Graphics/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Graphics/Material.cs -------------------------------------------------------------------------------- /Planes3D/Source/Graphics/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Graphics/Mesh.cs -------------------------------------------------------------------------------- /Planes3D/Source/Graphics/Skybox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Graphics/Skybox.cs -------------------------------------------------------------------------------- /Planes3D/Source/Graphics/Smd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Graphics/Smd.cs -------------------------------------------------------------------------------- /Planes3D/Source/Graphics/Terrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Graphics/Terrain.cs -------------------------------------------------------------------------------- /Planes3D/Source/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Input.cs -------------------------------------------------------------------------------- /Planes3D/Source/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Log.cs -------------------------------------------------------------------------------- /Planes3D/Source/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Math.cs -------------------------------------------------------------------------------- /Planes3D/Source/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Program.cs -------------------------------------------------------------------------------- /Planes3D/Source/Sound/SoundDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/Source/Sound/SoundDevice.cs -------------------------------------------------------------------------------- /Planes3D/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/Planes3D/app.config -------------------------------------------------------------------------------- /TexTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/TexTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TexTool/Source/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/TexTool/Source/Program.cs -------------------------------------------------------------------------------- /TexTool/TexTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monobogdan/airplanes/HEAD/TexTool/TexTool.csproj --------------------------------------------------------------------------------