rnr/Projects/Engine/Header/Helpers/Name.hpp

16 lines
323 B
C++

#pragma once
#include <map>
namespace RNR
{
class Name
{
public:
char* c_str();
static void compare(const RNR::Name* a, const RNR::Name* b);
static void declare(const char* sName, int dictionaryIndex);
static std::map<int, RNR::Name*>* dictionary;
};
}