snaketile.h 374 Bytes
Newer Older
1 2
#pragma once

3
#include "Wima/Geometry/WimaAreaData.h"
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

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);
};