Esempio n. 1
0
 private LinedefSpecial(LinedefSpecialHandler handler,LinedefActivationType activationtype,bool repeatable)
 {
     if (handler == null)
         throw new ArgumentNullException("handler");
     this.handler = handler;
     this.activationtype = activationtype;
     this.repeatable = repeatable;
 }
Esempio n. 2
0
 private LinedefSpecial(LinedefSpecialHandler handler, LinedefActivationType activationtype, bool repeatable)
 {
     if (handler == null)
     {
         throw new ArgumentNullException("handler");
     }
     this.handler        = handler;
     this.activationtype = activationtype;
     this.repeatable     = repeatable;
 }
Esempio n. 3
0
 public LinedefSpecialAttribute(int number)
 {
     this.number         = number;
     this.activationtype = LinedefActivationType.None;
     this.repeatable     = false;
 }
 public LinedefSpecialAttribute(int number)
 {
     this.number = number;
     this.activationtype = LinedefActivationType.None;
     this.repeatable = false;
 }