10 lines
152 B
C#
10 lines
152 B
C#
namespace FishNet.Serializing.Helping
|
|
{
|
|
public enum ComponentType : uint
|
|
{
|
|
X = 0,
|
|
Y = 1,
|
|
Z = 2,
|
|
W = 3
|
|
}
|
|
} |