1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/inc/graphics/shader.hpp

14 lines
243 B
C++

#ifndef XNA_GRAPHICS_SHADER_HPP
#define XNA_GRAPHICS_SHADER_HPP
#include "../default.hpp"
namespace xna {
class IShader {
public:
virtual ~IShader() {}
virtual bool Initialize(DataBuffer& buffer, xna_error_nullarg) = 0;
};
}
#endif