Projet server.

This commit is contained in:
MarcEricMartel
2023-09-18 15:56:17 -04:00
parent cf75843117
commit c3058070e5
25 changed files with 4600 additions and 37 deletions

32
SQCSim-common/blockinfo.h Normal file
View File

@@ -0,0 +1,32 @@
#ifndef BLOCKINFO_H__
#define BLOCKINFO_H__
#include <string>
#include "define.h"
class BlockInfo
{
public:
BlockInfo(BlockType type, const std::string& name, float u, float v, float s, int dur);
~BlockInfo();
BlockType GetType() const;
void SetDurability(int durability);
int GetDurability() const;
void GetTexture(float& u, float& v, float& s);
void Show() const;
private:
BlockType m_type;
float m_u;
float m_v;
float m_s;
std::string m_name;
int m_durability;
};
#endif // BLOCKINFO_H__