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,12 @@
#pragma once
#include <string>
class LocalizeFileEntry
{
public:
std::string m_key;
std::string m_value;
LocalizeFileEntry();
LocalizeFileEntry(std::string key, std::string value);
};