mapsizedlg.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef MAPSIZEDLG_H
  2. #define MAPSIZEDLG_H
  3. /*************************************************************************************************\
  4. mapsizedlg.h : Interface for the MapSizeDlg component.
  5. //---------------------------------------------------------------------------//
  6. // Copyright (C) Microsoft Corporation. All rights reserved. //
  7. //===========================================================================//
  8. \*************************************************************************************************/
  9. #include "stdafx.h"
  10. #include "resource.h"
  11. //*************************************************************************************************
  12. /**************************************************************************************************
  13. CLASS DESCRIPTION
  14. TerrainDlg:
  15. **************************************************************************************************/
  16. class MapSizeDlg: public CDialog
  17. {
  18. public:
  19. MapSizeDlg() : CDialog( IDD_MAPSIZE ){ mapSize = 0;}
  20. virtual ~MapSizeDlg(){}
  21. virtual void Init();
  22. virtual BOOL OnInitDialog(){ Init(); return true; }
  23. void OnOK();
  24. int mapSize;
  25. };
  26. //*************************************************************************************************
  27. #endif // end of file ( TerrainDlg.h )