* Add ModelPart from 0.2.0

This commit is contained in:
iProgramInCpp
2023-12-05 18:27:01 +02:00
parent bd6cd95b66
commit 8b3c01b092
16 changed files with 534 additions and 310 deletions

View File

@@ -8,10 +8,16 @@
#include "Model.hpp"
Model::Model()
Model::Model(int width, int height)
{
field_4 = 0.0f;
field_8 = false;
m_textureWidth = width;
m_textureHeight = height;
}
Model::~Model()
{
}
void Model::onGraphicsReset()