mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
124 files changed.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user