mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 00:55:45 +00:00
13 lines
202 B
C++
13 lines
202 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class LocalizeFileEntry
|
|
{
|
|
public:
|
|
std::string m_key;
|
|
std::string m_value;
|
|
|
|
LocalizeFileEntry();
|
|
LocalizeFileEntry(std::string key, std::string value);
|
|
};
|