#pragma once #include #include #include "Vertex.h" class Mesh { private: Microsoft::WRL::ComPtr bufferVertex; Microsoft::WRL::ComPtr bufferIndex; public: Mesh( Vertex* _vertices, int _vertexCount, unsigned int* _indices, int _indexCount, Microsoft::WRL::ComPtr _device, Microsoft::WRL::ComPtr _context); ~Mesh(); void Draw(); Microsoft::WRL::ComPtr* GetVertexBuffer(); Microsoft::WRL::ComPtr* GetIndexBuffer(); int GetIndexCount(); };