blob: a3abec1d02f14b11ffa73c66e39d8161aaccc549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _ASURA_EDITOR_SHADER_H_
#define _ASURA_EDITOR_SHADER_H_
namespace AsuraEditor
{
namespace Graphics
{
struct ShaderProgram
{
const char* vert;
const char* frag;
};
}
}
#endif
|