#include "Mesh.h" Mesh::Mesh(Vertex* _vertices, int _vertexCount, unsigned int* _indices, int _indexCount, Microsoft::WRL::ComPtr _device, Microsoft::WRL::ComPtr _context) { } Mesh::~Mesh() { } void Mesh::Draw() { } Microsoft::WRL::ComPtr* Mesh::GetVertexBuffer() { return nullptr; } Microsoft::WRL::ComPtr* Mesh::GetIndexBuffer() { return nullptr; } int Mesh::GetIndexCount() { return 0; }