mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
14 lines
294 B
C++
14 lines
294 B
C++
#ifndef XNA_GRAPHICS_VERTEXINPUT_HPP
|
|
#define XNA_GRAPHICS_VERTEXINPUT_HPP
|
|
|
|
#include "../default.hpp"
|
|
|
|
namespace xna {
|
|
class IVertexInputLayout {
|
|
public:
|
|
virtual ~IVertexInputLayout(){}
|
|
virtual bool Initialize(GraphicsDevice& device, DataBuffer& blob, xna_error_nullarg) = 0;
|
|
};
|
|
}
|
|
|
|
#endif |