Esempio n. 1
0
        internal Trait(
            MetaTypes _metaType,
            ushort _structureType,

            EntityId _entityId,
            LatticeId _latticeId)
        {
            TraitType = _traitType;
            EntityId  = _entityId;
            LatticeId = _latticeId;
        }
Esempio n. 2
0
 internal TraitData(TraitTypes _traitType, EntityId _entityId, LatticeId _latticeId)
     : base(_traitType, _entityId, _latticeId)
 {
 }
Esempio n. 3
0
 internal TraitEDateL(EntityId _entityId, LatticeId _latticeId, DateTime _DateTime)
     : base(TraitTypes.EDateTimeL, _entityId, _latticeId)
 {
     Soul = _DateTime;
 }
Esempio n. 4
0
 internal TraitERealL(EntityId _entityId, LatticeId _latticeId, double _double)
     : base(TraitTypes.ERealL, _entityId, _latticeId)
 {
     Soul = _double;
 }
Esempio n. 5
0
 internal TraitEIntL(EntityId _entityId, LatticeId _latticeId, long _long)
     : base(TraitTypes.EIntL, _entityId, _latticeId)
 {
     Soul = _long;
 }
Esempio n. 6
0
 internal TraitEStrL(EntityId _entityId, LatticeId _latticeId, String _str)
     : base(TraitTypes.LEStr, _entityId, _latticeId)
 {
     strData = _str;
 }
Esempio n. 7
0
 internal TraitEEnumL(EntityId _entityId, LatticeId _latticeId, ushort _enum)
     : base(TraitTypes.EEnumL, _entityId, _latticeId)
 {
     enumData = _enum;
 }
Esempio n. 8
0
 internal TraitEGL(EntityId _entityId, LatticeId _latticeId, Guid guid)
     : base(TraitTypes.EGL, _entityId, _latticeId)
 {
     Soul = guid;
 }
Esempio n. 9
0
 internal TraitLEG(EntityId _entityId, LatticeId _latticeId, Guid _guid)
     : base(TraitTypes.LEG, _entityId, _latticeId)
 {
     Soul = _guid;
 }
Esempio n. 10
0
 internal TraitEL(EntityId _entityId, LatticeId _latticeId)
     : base(TraitTypes.EL, _entityId, _latticeId)
 {
     TraitType = TraitTypes.EL;
 }
Esempio n. 11
0
 internal TraitLE(EntityId _entityId, LatticeId _latticeId)
     : base(TraitTypes.LE, _entityId, _latticeId)
 {
 }