metaforce/Runtime/Common/COsContextBoo.cpp

19 lines
191 B
C++
Raw Normal View History

2015-08-16 22:26:58 -07:00
#include "COsContext.hpp"
namespace Retro
{
namespace Common
{
2015-08-16 22:26:58 -07:00
COsContext::COsContext()
{
}
int COsContext::OpenWindow(const char* name, int x, int y, int w, int h)
{
return 0;
}
}
}