示例#1
0
 public ME3Class(ObjectReader data, ExportTableEntry exp, PCCFile pcc)
     : base(data, exp, pcc)
 {
     _ImplInterfaces = new List<InterfaceMapEntry>();
     _Components = new List<ComponentMapEntry>();
     _FunctionRefs = new List<Int32>();
 }
 public LinearColorPropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 16)
 {
 }
示例#3
0
 public FloatPropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 4)
 {
 }
示例#4
0
 public GUIDPropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 16)
 {
 }
示例#5
0
 public ScalePropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 17)
 {
 }
 public RwMatrix44PropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 64)
 {
 }
示例#7
0
 public ME3Object(ObjectReader data, ExportTableEntry exp, PCCFile pcc)
 {
     PCC = pcc;
     Data = data;
     ExportEntry = exp;
 }
示例#8
0
 public StrPropertyValue(ObjectReader data, PCCFile pcc, UInt32 size)
     : base(data, pcc, size)
 {
 }
示例#9
0
 public NamePropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 8)
 {
 }
示例#10
0
 public ME3DefaultProperty(ObjectReader data, PCCFile pccObj)
 {
     Data = data;
     PCC = pccObj;
 }
示例#11
0
 public DefaultPropertyValue(ObjectReader data, PCCFile pcc, UInt32 size)
 {
     Data = data;
     PCC = pcc;
     Size = size;
 }
示例#12
0
 public ObjectTableEntry(PCCFile current, ObjectReader data)
 {
     CurrentPCC = current;
     Data = data;
 }
示例#13
0
 public ME3State(ObjectReader data, ExportTableEntry exp, PCCFile pcc)
     : base(data, exp, pcc)
 {
     _FunctionMap = new List<FunctionMapEntry>();
 }
示例#14
0
 public ExportTableEntry(PCCFile current, ObjectReader data)
     : base(current, data)
 {
 }
示例#15
0
        public RwVector3PropertyValue Min; // TODO: figure out if this is really the correct syntax

        #endregion Fields

        #region Constructors

        public BioRwBoxPropertyValue(ObjectReader data, PCCFile pcc)
            : base(data, pcc, 25)
        {
        }
示例#16
0
 public RotatorPropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 12)
 {
 }
示例#17
0
 public BioMask4PropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 1)
 {
 }
示例#18
0
 public StringRefPropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 4)
 {
 }
 public NavReferencePropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 20)
 {
 }
示例#20
0
 public InterfacePropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 4)
 {
 }
 public CoverReferencePropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc)
 {
     Size = 28;
 }
示例#22
0
 public StructPropertyValue(ObjectReader data, PCCFile pcc, UInt32 size, String name)
     : base(data, pcc, size)
 {
     StructName = name;
 }
示例#23
0
 public ME3ScriptStruct(ObjectReader data, ExportTableEntry exp, PCCFile pccObj)
     : base(data, exp, pccObj)
 {
 }
 public AimTransformPropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 28)
 {
 }
示例#25
0
 public ME3ArrayProperty(ObjectReader data, ExportTableEntry exp, PCCFile pcc)
     : base(data, exp, pcc)
 {
 }
示例#26
0
 public ME3Enum(ObjectReader data, ExportTableEntry exp, PCCFile pcc)
     : base(data, exp, pcc)
 {
 }
示例#27
0
 public RwVector2PropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 8)
 {
 }
示例#28
0
        public Int32 OuterIndex; // Object that contains the assigned delegate

        #endregion Fields

        #region Constructors

        public DelegatePropertyValue(ObjectReader data, PCCFile pcc, String name)
            : base(data, pcc, 12)
        {
            DelegateName = name;//name.Substring(2, name.Length - 12);
        }
示例#29
0
 public IntPointPropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 8)
 {
 }
 public PolyReferencePropertyValue(ObjectReader data, PCCFile pcc)
     : base(data, pcc, 24)
 {
 }