blob: 0661e17ec45ea5cf2700b2f7e492874e628c3fe1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __ASURA_ENGINE_OPENGL_H__
#define __ASURA_ENGINE_OPENGL_H__
#include "glad/glad.h"
namespace AsuraEngine
{
namespace Graphics
{
class OpenGL
{
};
}
}
#endif
|