summaryrefslogtreecommitdiff
path: root/source/Asura.Editor/Graphics/Shader.h
blob: af291a5cd0bb00814b8c84b8e00ca3ad6e254c65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _ASURA_EDITOR_SHADER_H_
#define _ASURA_EDITOR_SHADER_H_

namespace AsuraEditor
{

struct ShaderProgram
{
	const char* vert; 
	const char* frag;
};

}

#endif