コード例 #1
0
 public DecorationFacade()
 {
     Field.InterpolationWait = false;
     Field.OnValueAdded     += delegate(int whichRoom, int which)
     {
         DecorationFacade decorationFacade = this;
         Field.InterpolationWait = false;
         Field.FieldDict[whichRoom].fieldChangeEvent += delegate(NetInt field, int oldValue, int newValue)
         {
             decorationFacade.changed(whichRoom, newValue);
         };
         changed(whichRoom, which);
     };
 }
コード例 #2
0
 public void Set(DecorationFacade other)
 {
     Field.Set(other.Field.Pairs);
 }