metaforce/Runtime/CIOWin.hpp

26 lines
515 B
C++
Raw Normal View History

2015-08-18 05:54:43 +00:00
#ifndef __RETRO_CIOWIN_HPP__
#define __RETRO_CIOWIN_HPP__
2015-08-20 02:52:07 +00:00
#include <string>
2015-08-18 05:54:43 +00:00
namespace Retro
{
2015-08-22 01:58:41 +00:00
class CArchitectureMessage;
class CArchitectureQueue;
2015-08-18 05:54:43 +00:00
class CIOWin
{
2015-08-20 02:52:07 +00:00
const char* m_name;
public:
virtual ~CIOWin() {}
CIOWin(const char* name) : m_name(name) {}
virtual bool OnMessage(const CArchitectureMessage&, CArchitectureQueue&)=0;
virtual bool GetIsContinueDraw() const {return true;}
virtual void Draw() const {}
virtual void PreDraw() const {}
2015-08-18 05:54:43 +00:00
};
}
#endif // __RETRO_CIOWIN_HPP__