Terrain Window

This commit is contained in:
2024-03-28 10:13:06 +01:00
parent 9e7e33494c
commit 92ecd8e83a
8 changed files with 47 additions and 14 deletions

View File

@@ -23,7 +23,7 @@ using namespace std;
////////////////////////////////////////////////////////////////////////////////
class ModelClass
{
private:
protected:
struct VertexType
{
@@ -65,10 +65,11 @@ private:
private:
ID3D11Buffer* m_vertexBuffer, * m_indexBuffer;
int m_vertexCount, m_indexCount;
TextureClass* m_Texture;
protected:
ModelType* m_model;
int m_vertexCount, m_indexCount;
};
#endif