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

View File

@@ -1,23 +0,0 @@
#ifndef BLOCKINFO_H__
#define BLOCKINFO_H__
#include "define.h"
class BlockInfo {
public:
BlockInfo(BlockType type, const std::string& name);
~BlockInfo();
BlockType GetType() const;
void SetDurability(int durability);
int GetDurability() const;
void Show() const;
private:
std::string m_name;
int m_durability;
BlockType m_type;
};
#endif