mirror of
https://github.com/AxioDL/boo.git
synced 2025-05-14 19:31:20 +00:00
20 lines
211 B
C++
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
|