00001 // wintourguide.h 00002 // 00003 // Copyright (C) 2001, Chris Laurel <claurel@shatters.net> 00004 // 00005 // Space 'tour guide' dialog for Windows. 00006 // 00007 // This program is free software; you can redistribute it and/or 00008 // modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 00010 // of the License, or (at your option) any later version. 00011 00012 #ifndef _WINTOURGUIDE_H_ 00013 #define _WINTOURGUIDE_H_ 00014 00015 #include "celestiacore.h" 00016 00017 00018 class TourGuide 00019 { 00020 public: 00021 TourGuide(HINSTANCE, HWND, CelestiaCore*); 00022 00023 public: 00024 CelestiaCore* appCore; 00025 Destination* selectedDest; 00026 HWND parent; 00027 HWND hwnd; 00028 }; 00029 00030 00031 #endif // _TOURGUIDE_H_ 00032
1.4.1