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

15 lines
289 B
C++
Raw Normal View History

2024-04-11 10:38:56 -03:00
#ifndef XNA_GRAPHICS_VERTEXBUFFER_HPP
#define XNA_GRAPHICS_VERTEXBUFFER_HPP
#include "../default.hpp"
namespace xna {
class IVertexBuffer {
public:
virtual ~IVertexBuffer(){}
2024-04-25 09:43:21 -03:00
virtual bool Initialize(xna_error_nullarg) = 0;
virtual bool Apply(xna_error_nullarg) = 0;
2024-04-11 10:38:56 -03:00
};
}
#endif