mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-19 10:55:36 +00:00
12 lines
164 B
C++
12 lines
164 B
C++
#pragma once
|
|
|
|
#include "Game/GameLanguage.h"
|
|
|
|
#include <string>
|
|
|
|
class LocalizeCommon
|
|
{
|
|
public:
|
|
static std::string GetNameOfLanguage(GameLanguage language);
|
|
};
|