@RenameSlotClass.h 733 B

12345678910111213141516171819
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. class RenameSlotClass : ClosableWindow
  4. {
  5. int slot_index; // number of slots before this one with similar name
  6. Str slot_name;
  7. TextLine textline;
  8. void create();
  9. void activate(int slot);
  10. virtual void update(C GuiPC &gpc)override;
  11. public:
  12. RenameSlotClass();
  13. };
  14. /******************************************************************************/
  15. /******************************************************************************/
  16. extern RenameSlotClass RenameSlot;
  17. /******************************************************************************/