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