Files
Project-Reboot-3.0/Project Reboot 3.0/NameTypes.h
2023-03-04 15:06:07 -05:00

16 lines
163 B
C++

#pragma once
#include "inc.h"
struct FNameEntryId
{
uint32 Value;
};
struct FName
{
FNameEntryId ComparisonIndex;
uint32 Number;
std::string ToString();
};