2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-27 20:45:34 +00:00
metaforce/Runtime/COsContext.hpp
2015-08-18 12:51:54 -10:00

17 lines
239 B
C++

#ifndef __RETRO_COSCONTEXT_HPP__
#define __RETRO_COSCONTEXT_HPP__
namespace Retro
{
class COsContext
{
public:
COsContext();
int OpenWindow(const char* name, int x, int y, int w, int h);
};
}
#endif // __RETRO_COSCONTEXT_HPP__