mirror of
https://forge.banditvault.co.uk/racoon/MinecraftConsoles.git
synced 2026-05-22 17:34:42 +00: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;
|
|
};
|