1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-07-04 06:54:39 +00:00

delete some unused code

This commit is contained in:
fgenesis 2022-05-18 02:38:53 +02:00
parent 111cd43805
commit 046b98c725
4 changed files with 0 additions and 19 deletions

View file

@ -396,14 +396,6 @@ void RenderObject::destroy()
texture = NULL;
}
void RenderObject::copyProperties(RenderObject *target)
{
this->color = target->color;
this->position = target->position;
this->alpha = target->alpha;
this->velocity = target->velocity;
}
const RenderObject &RenderObject::operator=(const RenderObject &r)
{
errorLog("Operator= not defined for RenderObject. Use 'copyProperties'");