diff options
Diffstat (limited to 'src/com/fourisland/fourpuzzle/gamestate/mapview/event/EventCall.java')
| -rw-r--r-- | src/com/fourisland/fourpuzzle/gamestate/mapview/event/EventCall.java | 25 |
1 files changed, 25 insertions, 0 deletions
| diff --git a/src/com/fourisland/fourpuzzle/gamestate/mapview/event/EventCall.java b/src/com/fourisland/fourpuzzle/gamestate/mapview/event/EventCall.java new file mode 100644 index 0000000..daca678 --- /dev/null +++ b/src/com/fourisland/fourpuzzle/gamestate/mapview/event/EventCall.java | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | /* | ||
| 2 | * To change this template, choose Tools | Templates | ||
| 3 | * and open the template in the editor. | ||
| 4 | */ | ||
| 5 | |||
| 6 | package com.fourisland.fourpuzzle.gamestate.mapview.event; | ||
| 7 | |||
| 8 | /** | ||
| 9 | * | ||
| 10 | * @author hatkirby | ||
| 11 | */ | ||
| 12 | public abstract class EventCall extends SpecialEvent implements Runnable { | ||
| 13 | |||
| 14 | public static EventCall getEmptyEventCall() | ||
| 15 | { | ||
| 16 | return new EventCall() { | ||
| 17 | @Override | ||
| 18 | public void run() { | ||
| 19 | } | ||
| 20 | }; | ||
| 21 | } | ||
| 22 | |||
| 23 | public abstract void run(); | ||
| 24 | |||
| 25 | } | ||
