mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-23 02:05:31 +00:00
7 lines
95 B
C++
7 lines
95 B
C++
#pragma once
|
|
|
|
class StatFormatter {
|
|
public:
|
|
virtual std::wstring format(int value) = 0;
|
|
};
|