2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-06 00:37:26 +00:00

Add asset loader for localize files

This commit is contained in:
Jan
2021-03-23 17:16:36 +01:00
parent 3ed63415a7
commit 79c1284193
50 changed files with 609 additions and 23 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include <string>
#include "Game/GameLanguage.h"
class LocalizeCommon
{
public:
static std::string GetNameOfLanguage(GameLanguage language);
};