summaryrefslogtreecommitdiffstats
path: root/Tools/BiomeVisualiser/BiomeVisualiser.h
blob: 4f8ce751375b523c9c99b61c3b24ca52ee32ee81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

// 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;
} ;