blob: 4788bb7eaa806b172c684f69eb3fc39e49f4d720 (
plain) (
tree)
|
|
// 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;
} ;
|