1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/graphics/indexbuffer.hpp
2024-04-25 09:43:21 -03:00

14 lines
241 B
C++

#ifndef XNA_GRAPHICS_INDEXBUFFER_HPP
#define XNA_GRAPHICS_INDEXBUFFER_HPP
#include "../default.hpp"
namespace xna {
class IIndexBuffer {
public:
virtual ~IIndexBuffer() {}
virtual bool Initialize(xna_error_nullarg) = 0;
};
}
#endif