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

13 lines
202 B
C++
Raw Normal View History

2024-04-09 15:15:11 -03:00
#ifndef XNA_GRAPHICS_VERTEXINPUT_HPP
#define XNA_GRAPHICS_VERTEXINPUT_HPP
#include "../default.hpp"
namespace xna {
class IVertexInputLayout {
public:
virtual ~IVertexInputLayout(){}
};
}
#endif