tagging release
[dasher.git] / Src / Win32 / GameModeHelper.h
blob7852467890da422926a0f0d39d7fe8475bd8bffe
1 #ifndef __GameModeHelper_h__
2 #define __GameModeHelper_h__
4 // TODO: There seems to be an implicit dependence between these header files:
5 #include "Common\WinCommon.h"
6 #include "../DasherCore/DasherInterfaceBase.h"
8 #include <string>
10 class CGameModeHelper {
11 public:
12 CGameModeHelper(Dasher::CDasherInterfaceBase *pInterface);
14 void Output(std::string strText);
15 void Delete(int iCount);
17 private:
18 Dasher::CDasherInterfaceBase *m_pInterface;
20 std::string strTarget;
21 std::string strOutput;
24 #endif