Beispiel #1
0
 // Function from file: chronosuit.dm
 public void remove_target_ui(  )
 {
     if (this.target_ui != null)
     {
         GlobalFuncs.qdel(this.target_ui);
         this.target_ui = null;
     }
     return;
 }
Beispiel #2
0
 // Function from file: chronosuit.dm
 public void create_target_ui(  )
 {
     if (this.holder != null && Lang13.Bool(((dynamic)this.holder).client) && this.chronosuit != null)
     {
         if (this.target_ui != null)
         {
             this.remove_target_ui();
         }
         this.target_ui = new Obj_Screen_ChronosTarget(null, this.holder);
         ((dynamic)this.holder).client.screen += this.target_ui;
     }
     return;
 }