add boostinfo

This commit is contained in:
Frederic Leger
2023-10-30 14:03:10 -04:00
parent dd851a17e1
commit 9fa4f2829b
9 changed files with 140 additions and 2 deletions

29
SQCSim-common/boostinfo.h Normal file
View File

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