mirror of
https://git.neolegacy.dev/Elysium/Project-Elysium.git
synced 2026-08-09 16:51:22 +00:00
9 lines
116 B
C++
9 lines
116 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
class StatFormatter
|
|
{
|
|
public:
|
|
virtual wstring format(int value) = 0;
|
|
};
|