@RegisterWin.h 633 B

1234567891011121314151617
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. class RegisterWin : ClosableWindow
  4. {
  5. Text t_name;
  6. TextLine name;
  7. Button ok;
  8. static void OK(RegisterWin &rw);
  9. void create();
  10. virtual void update(C GuiPC &gpc)override;
  11. };
  12. /******************************************************************************/
  13. /******************************************************************************/
  14. extern RegisterWin Register;
  15. /******************************************************************************/