@NewWorldClass.h 874 B

123456789101112131415161718192021222324252627
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. class NewWorldClass : ClosableWindow
  4. {
  5. TextBlack ts;
  6. TextNoTest tname, tarea_size, theightmap_res, tdensity, density;
  7. TextLine name;
  8. ComboBox area_size, heightmap_res;
  9. Button ok, cancel;
  10. UID parent_id;
  11. static void OK(NewWorldClass &nw);
  12. int areaSize();
  13. int heightmapRes ();
  14. void create();
  15. void display();
  16. void update(C GuiPC &gpc);
  17. public:
  18. NewWorldClass();
  19. };
  20. /******************************************************************************/
  21. /******************************************************************************/
  22. extern NewWorldClass NewWorld;
  23. /******************************************************************************/