2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 07:07:42 +00:00

various implementations

This commit is contained in:
Jack Andersen
2015-08-19 16:52:07 -10:00
parent e1d45fd01c
commit 746eb46026
34 changed files with 643 additions and 23 deletions

View File

@@ -1,11 +1,23 @@
#ifndef __RETRO_CIOWIN_HPP__
#define __RETRO_CIOWIN_HPP__
#include <string>
#include "CArchitectureMessage.hpp"
#include "CArchitectureQueue.hpp"
namespace Retro
{
class CIOWin
{
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 {}
};
}