mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
#pragma once
|
|
|
|
enum EObjectFlags
|
|
{
|
|
RF_NoFlags = 0x00000000,
|
|
RF_Public = 0x00000001,
|
|
RF_Standalone = 0x00000002,
|
|
RF_MarkAsNative = 0x00000004,
|
|
RF_Transactional = 0x00000008,
|
|
RF_ClassDefaultObject = 0x00000010,
|
|
RF_ArchetypeObject = 0x00000020,
|
|
RF_Transient = 0x00000040,
|
|
RF_MarkAsRootSet = 0x00000080,
|
|
RF_TagGarbageTemp = 0x00000100,
|
|
RF_NeedInitialization = 0x00000200,
|
|
RF_NeedLoad = 0x00000400,
|
|
RF_KeepForCooker = 0x00000800,
|
|
RF_NeedPostLoad = 0x00001000,
|
|
RF_NeedPostLoadSubobjects = 0x00002000,
|
|
RF_NewerVersionExists = 0x00004000,
|
|
RF_BeginDestroyed = 0x00008000,
|
|
RF_FinishDestroyed = 0x00010000,
|
|
RF_BeingRegenerated = 0x00020000,
|
|
RF_DefaultSubObject = 0x00040000,
|
|
RF_WasLoaded = 0x00080000,
|
|
RF_TextExportTransient = 0x00100000,
|
|
RF_LoadCompleted = 0x00200000,
|
|
RF_InheritableComponentTemplate = 0x00400000,
|
|
RF_DuplicateTransient = 0x00800000,
|
|
RF_StrongRefOnFrame = 0x01000000,
|
|
RF_NonPIEDuplicateTransient = 0x02000000,
|
|
RF_WillBeLoaded = 0x08000000,
|
|
RF_HasExternalPackage = 0x10000000,
|
|
RF_AllocatedInSharedPage = 0x80000000,
|
|
}; |