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