2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-20 01:53:29 +00:00
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;
}
}
}