diff --git a/Mesh.cpp b/Mesh.cpp new file mode 100644 index 0000000..e2b0818 --- /dev/null +++ b/Mesh.cpp @@ -0,0 +1,28 @@ +#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; +} diff --git a/Mesh.h b/Mesh.h new file mode 100644 index 0000000..c07fb31 --- /dev/null +++ b/Mesh.h @@ -0,0 +1,26 @@ +#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(); +};