fixing abstract Window.hpp

This commit is contained in:
Clément Le Bihan
2021-05-21 12:07:52 +02:00
parent e86ffbe456
commit 81f662083f
5 changed files with 21 additions and 12 deletions

View File

@@ -42,4 +42,10 @@ Image RAY::Texture::toImage(void) const
const ::Texture &RAY::Texture::getTexture(void) const
{
return this->_texture;
}
bool RAY::Texture::unload()
{
UnloadTexture(this->_texture);
return true;
}