blob: 6f5a8cc16d128245c278b24f2b4c488ee81ceb7c (
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
|