2023-05-08 15:56:10 +03:00

13 lines
205 B
C#

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