├── .gitattributes ├── .gitignore ├── BlockTesting.sln ├── BlockTesting ├── Air.cpp ├── Air.h ├── Block.cpp ├── Block.h ├── BlockCoord.h ├── BlockTesting.vcxproj ├── BlockTesting.vcxproj.filters ├── Blocks.h ├── Camera.cpp ├── Camera.h ├── Chunk.cpp ├── Chunk.h ├── Dirt.cpp ├── Dirt.h ├── GLManager.cpp ├── GLManager.h ├── Grass.cpp ├── Grass.h ├── HashHelper.h ├── MainGame.cpp ├── MainGame.h ├── Player.cpp ├── Player.h ├── Source.cpp ├── Stone.cpp ├── Stone.h ├── TextureManager.cpp ├── TextureManager.h ├── ThreadPool.cpp ├── ThreadPool.h ├── Water.cpp ├── Water.h ├── World.cpp ├── World.h ├── WorldGenerator.cpp ├── WorldGenerator.h └── main.cpp ├── Debug ├── fragmentShader.glsl └── vertexShader.glsl ├── LICENCE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /BlockTesting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting.sln -------------------------------------------------------------------------------- /BlockTesting/Air.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Air.cpp -------------------------------------------------------------------------------- /BlockTesting/Air.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Air.h -------------------------------------------------------------------------------- /BlockTesting/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Block.cpp -------------------------------------------------------------------------------- /BlockTesting/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Block.h -------------------------------------------------------------------------------- /BlockTesting/BlockCoord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/BlockCoord.h -------------------------------------------------------------------------------- /BlockTesting/BlockTesting.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/BlockTesting.vcxproj -------------------------------------------------------------------------------- /BlockTesting/BlockTesting.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/BlockTesting.vcxproj.filters -------------------------------------------------------------------------------- /BlockTesting/Blocks.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlockTesting/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Camera.cpp -------------------------------------------------------------------------------- /BlockTesting/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Camera.h -------------------------------------------------------------------------------- /BlockTesting/Chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Chunk.cpp -------------------------------------------------------------------------------- /BlockTesting/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Chunk.h -------------------------------------------------------------------------------- /BlockTesting/Dirt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Dirt.cpp -------------------------------------------------------------------------------- /BlockTesting/Dirt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Dirt.h -------------------------------------------------------------------------------- /BlockTesting/GLManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/GLManager.cpp -------------------------------------------------------------------------------- /BlockTesting/GLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/GLManager.h -------------------------------------------------------------------------------- /BlockTesting/Grass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Grass.cpp -------------------------------------------------------------------------------- /BlockTesting/Grass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Grass.h -------------------------------------------------------------------------------- /BlockTesting/HashHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/HashHelper.h -------------------------------------------------------------------------------- /BlockTesting/MainGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/MainGame.cpp -------------------------------------------------------------------------------- /BlockTesting/MainGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/MainGame.h -------------------------------------------------------------------------------- /BlockTesting/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Player.cpp -------------------------------------------------------------------------------- /BlockTesting/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Player.h -------------------------------------------------------------------------------- /BlockTesting/Source.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BlockTesting/Stone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Stone.cpp -------------------------------------------------------------------------------- /BlockTesting/Stone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Stone.h -------------------------------------------------------------------------------- /BlockTesting/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/TextureManager.cpp -------------------------------------------------------------------------------- /BlockTesting/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/TextureManager.h -------------------------------------------------------------------------------- /BlockTesting/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/ThreadPool.cpp -------------------------------------------------------------------------------- /BlockTesting/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/ThreadPool.h -------------------------------------------------------------------------------- /BlockTesting/Water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Water.cpp -------------------------------------------------------------------------------- /BlockTesting/Water.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/Water.h -------------------------------------------------------------------------------- /BlockTesting/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/World.cpp -------------------------------------------------------------------------------- /BlockTesting/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/World.h -------------------------------------------------------------------------------- /BlockTesting/WorldGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/WorldGenerator.cpp -------------------------------------------------------------------------------- /BlockTesting/WorldGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/WorldGenerator.h -------------------------------------------------------------------------------- /BlockTesting/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/BlockTesting/main.cpp -------------------------------------------------------------------------------- /Debug/fragmentShader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/Debug/fragmentShader.glsl -------------------------------------------------------------------------------- /Debug/vertexShader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/Debug/vertexShader.glsl -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiancosgrove/block-testing/HEAD/README.md --------------------------------------------------------------------------------