summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/gamestate/mapview/event/specialmove/MoveEvent.java
blob: b79c45a0a5913905f217e34af86cf9a68d2877c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.fourisland.fourpuzzle.gamestate.mapview.event.specialmove;

import com.fourisland.fourpuzzle.gamestate.mapview.event.Event;

/**
 * A MoveEvent is an object that tells the <b>MoveEvent()</b> SpecialEvent
 * what to do.
 * 
 * @author hatkirby
 */
public interface MoveEvent {

    public void doAction(Event ev);
    
}