mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 00:13:37 +00:00
7 lines
94 B
C++
7 lines
94 B
C++
#pragma once
|
|
|
|
class StatFormatter {
|
|
public:
|
|
virtual std::string format(int value) = 0;
|
|
};
|