metaforce/Runtime/Common/COsContext.hpp

20 lines
260 B
C++
Raw Normal View History

2015-08-16 22:26:58 -07:00
#ifndef __RETRO_COSCONTEXT_HPP__
#define __RETRO_COSCONTEXT_HPP__
namespace Retro
{
namespace Common
{
2015-08-16 22:26:58 -07:00
class COsContext
{
public:
COsContext();
int OpenWindow(const char* name, int x, int y, int w, int h);
};
}
}
2015-08-16 22:26:58 -07:00
#endif // __RETRO_COSCONTEXT_HPP__