Example #1
0
 public ItemModRepresentation()
 {
     if (base.GetType() == typeof(ItemModRepresentation))
     {
         this.caps = (ItemModRepresentation.Caps) 0;
     }
     else
     {
         this.caps = ItemModRepresentation.Caps.Initialize | ItemModRepresentation.Caps.BindStateFlags | ItemModRepresentation.Caps.Shutdown;
     }
 }
 public ItemModRepresentation()
 {
     if (base.GetType() == typeof(ItemModRepresentation))
     {
         this.caps = (ItemModRepresentation.Caps)0;
     }
     else
     {
         this.caps = ItemModRepresentation.Caps.Initialize | ItemModRepresentation.Caps.BindStateFlags | ItemModRepresentation.Caps.Shutdown;
     }
 }
Example #3
0
 protected SightModRep(ItemModRepresentation.Caps caps, bool defaultOn) : base(caps, defaultOn)
 {
 }
Example #4
0
 protected SightModRep(ItemModRepresentation.Caps caps) : this(caps, true)
 {
 }
Example #5
0
 protected ItemModRepresentation(ItemModRepresentation.Caps caps)
 {
     this.caps = caps;
 }
Example #6
0
 protected LaserModRep(ItemModRepresentation.Caps caps) : this(caps, false)
 {
 }
Example #7
0
 protected WeaponModRep(ItemModRepresentation.Caps caps) : this(caps, false)
 {
 }
Example #8
0
 protected WeaponModRep(ItemModRepresentation.Caps caps, bool defaultsOn) : base(caps)
 {
     this.defaultsOn = defaultsOn;
     this._on        = defaultsOn;
 }
 protected ItemModRepresentation(ItemModRepresentation.Caps caps)
 {
     this.caps = caps;
 }