// WARNING: This file is auto-generated and any changes to it will be overwritten
import java.util.*;
import greenfoot.*;

/**
 * It's just a cliff.
 */
public class Cliff extends Actor
{

    /**
     * Default consrtuctor - nothign to do
     */
    public Cliff()
    {
    }

    /**
     * Create a horizontally mirrored cliff face.
     */
    public Cliff(boolean flip)
    {
        if (flip) {
            getImage().mirrorHorizontally();
        }
    }

    /**
     * Act: nothing to do here (the cliff does not do anything)
     */
    public void act()
    {
        /* nothing to do*/
    }
}
