mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-22 04:37:51 -05:00
feat: add warning for dupe localize assets
This commit is contained in:
@ -1,9 +0,0 @@
|
||||
#include "LocalizeFile.h"
|
||||
|
||||
LocalizeFileEntry::LocalizeFileEntry() = default;
|
||||
|
||||
LocalizeFileEntry::LocalizeFileEntry(std::string key, std::string value)
|
||||
: m_key(std::move(key)),
|
||||
m_value(std::move(value))
|
||||
{
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
|
||||
class LocalizeFileEntry
|
||||
{
|
||||
public:
|
||||
std::string m_key;
|
||||
std::string m_value;
|
||||
|
||||
LocalizeFileEntry();
|
||||
LocalizeFileEntry(std::string key, std::string value);
|
||||
};
|
Reference in New Issue
Block a user