Exemple #1
0
void SFMLTexture_c::SetSize(uint16_t w, uint16_t h)
{
    if (texture.GetWidth() != w && texture.GetHeight() != h)
    {
        texture.Create(w, h);
    }
}