snaketile.cpp 345 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#include "snaketile.h"

SnakeTile::SnakeTile() : WimaAreaData()
{

}

SnakeTile::SnakeTile(const SnakeTile &other) : WimaAreaData()
{
    *this = other;
}

SnakeTile &SnakeTile::operator=(const SnakeTile &other)
{
    this->assign(other);
    return *this;

}

void SnakeTile::assign(const SnakeTile &other)
{
    WimaAreaData::assign(other);
}