metaforce/Runtime/Common/COsContextBoo.cpp

19 lines
191 B
C++

#include "COsContext.hpp"
namespace Retro
{
namespace Common
{
COsContext::COsContext()
{
}
int COsContext::OpenWindow(const char* name, int x, int y, int w, int h)
{
return 0;
}
}
}