mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 14:37:25 +00:00
5973430720
Wincent's attempt at making LU into something it isn't supposed to be, an ARPG.
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__
|