DarkflameServer/dGame/dGrim/StatProperty.h
wincent 5973430720 Grim LU
Wincent's attempt at making LU into something it isn't supposed to be, an ARPG.
2023-07-15 10:54:41 +02:00

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__