2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
// BiomeVisualiser.h
|
|
|
|
|
|
|
|
// Declares the cBiomeVisualiser class representing the entire application
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "BiomeViewWnd.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBiomeVisualiser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBiomeVisualiser(void);
|
|
|
|
|
|
|
|
int Run(void);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
cBiomeViewWnd m_MainWnd;
|
|
|
|
|
2013-10-12 05:27:06 -04:00
|
|
|
cMCLogger * m_Logger;
|
2013-07-29 07:13:03 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|