public void SetFact(
     Facts fact,
     FirearmOrders value,
     bool invokeChangedEvent = true,
     bool setAsDirty         = true,
     bool checkValueDiff     = true)
 {
     this.SetFact(fact, (byte)value, invokeChangedEvent, setAsDirty, checkValueDiff);
 }
Example #2
0
 public void PushFactChangeDuringPlanning(Facts fact, FirearmOrders value, bool temporary)
 {
     this.PushFactChangeDuringPlanning((byte)fact, (byte)value, temporary);
 }