Beispiel #1
0
 protected EntitySystem()
 {
     Bit       = 0;
     _aspect   = Aspect.Empty();
     IsEnabled = true;
 }
Beispiel #2
0
 protected EntitySystem(Aspect aspect)
     : this()
 {
     Debug.Assert(aspect != null, "Aspect must not be null.");
     this._aspect = aspect;
 }
Beispiel #3
0
 protected EntityProcessingSystem(Aspect aspect)
     : base(aspect)
 {
 }