snaketile.h 360 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#pragma once

#include "WimaAreaData.h"

class SnakeTile : public WimaAreaData
{
public:
    SnakeTile();
    SnakeTile(const SnakeTile&other);

    QString type() const {return "SnakeTile";}
    SnakeTile* Clone() const {return new SnakeTile(*this);}

    SnakeTile& operator=(const SnakeTile &other);

protected:
    void assign(const SnakeTile &other);
};