Exemple #1
0
        internal Trait(
            MetaTypes _metaType,
            ushort _structureType,

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