mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-20 05:53:27 +00:00
20 lines
260 B
C++
20 lines
260 B
C++
#ifndef __RETRO_COSCONTEXT_HPP__
|
|
#define __RETRO_COSCONTEXT_HPP__
|
|
|
|
namespace Retro
|
|
{
|
|
namespace Common
|
|
{
|
|
|
|
class COsContext
|
|
{
|
|
public:
|
|
COsContext();
|
|
int OpenWindow(const char* name, int x, int y, int w, int h);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __RETRO_COSCONTEXT_HPP__
|