More refactoring

This commit is contained in:
Dynamitos
2023-11-15 00:06:00 +01:00
parent 59d6c9d794
commit f8f48352a3
49 changed files with 930 additions and 1015 deletions
+2 -2
View File
@@ -123,10 +123,10 @@ void TextureAsset::setTexture(Gfx::OTexture _texture)
uint32 TextureAsset::getWidth()
{
return texture->getSizeX();
return texture->getWidth();
}
uint32 TextureAsset::getHeight()
{
return texture->getSizeY();
return texture->getHeight();
}