Skip to content
zoneConstruction.h 468 B
Newer Older
#ifndef ZONECONSTRUCTION_H
#define ZONECONSTRUCTION_H

#include "position.h"
#include "mediumLevelAction.h"
#include "command.h"

class ZoneConstruction : public MediumLevelAction
{
public:
    ZoneConstruction();

    ZoneConstruction(Position goalPosition, Benne* benne);

    ~ZoneConstruction();

    int update();

    Etape::EtapeType getType();

protected:
};

#endif // ZONECONSTRUCTION_H