mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-23 04:18:13 +05:00
9 lines
108 B
C++
9 lines
108 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
class StatFormatter
|
|
{
|
|
public:
|
|
virtual wstring format(int value) = 0;
|
|
};
|