Add project files.
This commit is contained in:
		
							
								
								
									
										19
									
								
								SQCSim2021/chunk.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								SQCSim2021/chunk.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| #ifndef CHUNK_H__ | ||||
| #define CHUNK_H__ | ||||
|  | ||||
| #include "define.h" | ||||
| #include "blockarray3d.h" | ||||
|  | ||||
| class Chunk : public BlockArray3d { | ||||
| public: | ||||
| 	Chunk(); | ||||
| 	~Chunk(); | ||||
|  | ||||
| 	void RemoveBlock(int x, int y, int z); | ||||
| 	void SetBlock(int x, int y, int z, BlockType type); | ||||
| 	BlockType GetBlock(int x, int y, int z) const; | ||||
|  | ||||
| }; | ||||
|  | ||||
| #endif | ||||
|  | ||||
		Reference in New Issue
	
	Block a user