mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-19 07:28:04 +08:00
13 lines
207 B
C++
13 lines
207 B
C++
![]() |
#pragma once
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
class translation_entry
|
||
|
{
|
||
|
public:
|
||
|
std::string name;
|
||
|
std::string file;
|
||
|
|
||
|
NLOHMANN_DEFINE_TYPE_INTRUSIVE(translation_entry, name, file)
|
||
|
};
|
||
|
}
|