Files
2026-06-22 16:18:34 +02:00

12 lines
222 B
C#

namespace FishNet.Component.Transforming
{
[System.Flags]
public enum SynchronizedProperty : byte
{
None = 0,
Parent = 1,
Position = 2,
Rotation = 4,
Scale = 8
}
}