示例#1
0
 protected override void UpdateEx(float interval)
 {
     base.UpdateEx(interval);
     if (CurPanel != null)
     {
         CurPanel.Update();
     }
 }
示例#2
0
 public override void UpdateEx()
 {
     base.UpdateEx();
     if (CurPanel != null)
     {
         CurPanel.Update();
     }
 }