boo/include/win/CWGLContext.hpp

20 lines
211 B
C++
Raw Normal View History

2015-04-19 00:37:52 +00:00
#ifndef CWGLCONTEXT_HPP
#define CWGLCONTEXT_HPP
#ifdef _WIN32
#include "IGraphicsContext.hpp"
2015-04-29 10:24:39 +00:00
namespace boo
{
class CWGLContext : public IGraphicsContext
{
};
2015-04-29 10:24:39 +00:00
}
2015-04-19 00:37:52 +00:00
#endif // _WIN32
#endif // CWGLCONTEXT_HPP