2c214603e2
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1192 0a769ca7-a7f5-676a-18bf-c427514a06d6
32 lines
311 B
C++
32 lines
311 B
C++
|
|
// 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;
|
|
|
|
cMCLogger m_Logger;
|
|
} ;
|
|
|
|
|
|
|
|
|