Début TP2 + Handling des événements de touches de mouvement

This commit is contained in:
Marc-Eric Martel
2021-09-24 10:15:43 -04:00
parent 6d62a36bd3
commit 2f8e6dbb30
186 changed files with 26429 additions and 442 deletions

16
mcclone/chunk.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef CHUNK_H__
#define CHUNK_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);
};
#endif // CHUNK_H__