#pragma once #include #include "Utils.h" #include namespace TEN::Renderer { class IndexBuffer { public: Microsoft::WRL::ComPtr Buffer; IndexBuffer() {}; IndexBuffer(ID3D11Device* device, int numIndices, int* indices); }; }