예제 #1
0
        public FName(UsmapPropertyData name, int index = 0, int number = 0)
        {
            String = name != null?name.Type.ToString() : "None";

            Index  = index;
            Number = number;
        }
예제 #2
0
 public UsmapProperty(string name, ushort schemaIdx, byte arraySize, UsmapPropertyData data)
 {
     Name      = name;
     SchemaIdx = schemaIdx;
     ArraySize = arraySize;
     Data      = data;
 }
예제 #3
0
 public FUnversionedProperty(UsmapProperty prop)
 {
     Name = prop.Name;
     Data = prop.Data;
 }