boo/include/win/CWGLContext.hpp
Jack Andersen f0dc0451fd initial round of MSVC porting of libBoo
also added libwdi submodule
2015-05-01 14:20:30 -10:00

20 lines
211 B
C++

#ifndef CWGLCONTEXT_HPP
#define CWGLCONTEXT_HPP
#ifdef _WIN32
#include "IGraphicsContext.hpp"
namespace boo
{
class CWGLContext : public IGraphicsContext
{
};
}
#endif // _WIN32
#endif // CWGLCONTEXT_HPP