Navigation
API > API/Runtime > API/Runtime/Engine
Various flags that describe how a Property should be handled.
| Name | ERepLayoutCmdFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/Net/RepLayout.h |
| Include Path | #include "Net/RepLayout.h" |
Syntax
enum ERepLayoutCmdFlags
{
None = 0,
IsSharedSerialization = (1 << 0),
IsStruct = (1 << 1),
IsEmptyArrayStruct = (1 << 2),
}
Values
| Name | Remarks |
|---|---|
| None | |
| IsSharedSerialization | No flags. |
| IsStruct | Indicates the property is eligible for shared serialization. |
| IsEmptyArrayStruct | This is a struct property. |