diff options
Diffstat (limited to 'source/Asura.Editor/graphics/shader.h')
-rw-r--r-- | source/Asura.Editor/graphics/shader.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/Asura.Editor/graphics/shader.h b/source/Asura.Editor/graphics/shader.h new file mode 100644 index 0000000..6f5a8cc --- /dev/null +++ b/source/Asura.Editor/graphics/shader.h @@ -0,0 +1,18 @@ +#ifndef __ASURA_EDITOR_SHADER_H__ +#define __ASURA_EDITOR_SHADER_H__ + +namespace AsuraEditor +{ + namespace Graphics + { + + struct ShaderProgram + { + const char* vert; + const char* frag; + }; + + } +} + +#endif
\ No newline at end of file |