mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 22:47:25 +00:00
26 lines
382 B
C
26 lines
382 B
C
|
#pragma once
|
||
|
|
||
|
#ifndef __ESTAT__H__
|
||
|
#define __ESTAT__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <string>
|
||
|
|
||
|
#include "StatModifier.h"
|
||
|
#include "StatTypes.h"
|
||
|
|
||
|
#define BASE_MULTIPLIER 100.0f
|
||
|
|
||
|
struct StatProperty
|
||
|
{
|
||
|
eStatTypes type;
|
||
|
eStatModifier modifier;
|
||
|
float value;
|
||
|
|
||
|
StatProperty(eStatTypes type, eStatModifier modifier, float value);
|
||
|
|
||
|
std::string HtmlString();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //!__ESTAT__H__
|