124 files changed.

This commit is contained in:
Milxnor
2023-04-15 19:53:58 -04:00
parent 63473de425
commit bbf28ed9e9
124 changed files with 60988 additions and 577 deletions

View File

@@ -5,6 +5,10 @@
struct FNameEntryId
{
uint32 Value;
FNameEntryId() : Value(0) {}
FNameEntryId(uint32 value) : Value(value) {}
};
struct FName
@@ -15,6 +19,10 @@ struct FName
std::string ToString() const;
std::string ToString();
FName() : ComparisonIndex(0), Number(0) {}
FName(uint32 Value) : ComparisonIndex(Value), Number(0) {}
bool IsValid() { return ComparisonIndex.Value > 0; }
bool operator==(FName other)