123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- // Radiant.h : main header file for the RADIANT application
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CRadiantApp:
- // See Radiant.cpp for the implementation of this class
- //
- class CRadiantApp : public CWinApp
- {
- public:
- CRadiantApp();
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CRadiantApp)
- public:
- virtual BOOL InitInstance();
- virtual int ExitInstance();
- virtual BOOL OnIdle(LONG lCount);
- //}}AFX_VIRTUAL
- // Implementation
- //{{AFX_MSG(CRadiantApp)
- afx_msg void OnHelp();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|