mirror of
https://github.com/portable-lce/portable-lce.git
synced 2026-07-18 09:28:18 +00:00
9 lines
93 B
C++
9 lines
93 B
C++
#pragma once
|
|
|
|
|
|
class StatFormatter
|
|
{
|
|
public:
|
|
virtual std::wstring format(int value) = 0;
|
|
};
|