summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/gamestate/mapview/event/SpecialEvent.java
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2009-02-08 19:40:41 -0500
committerStarla Insigna <hatkirby@fourisland.com>2009-02-08 19:40:41 -0500
commit3cecb76e6a2240f052eb14a374b7a75950cbbc3d (patch)
tree93ea75c86e068ccd21cec6ba15eb2c8ae7bc0580 /src/com/fourisland/fourpuzzle/gamestate/mapview/event/SpecialEvent.java
parent2b4864dd89dc6d3aeb70ec863bd092ca30c31db7 (diff)
downloadfourpuzzle-3cecb76e6a2240f052eb14a374b7a75950cbbc3d.tar.gz
fourpuzzle-3cecb76e6a2240f052eb14a374b7a75950cbbc3d.tar.bz2
fourpuzzle-3cecb76e6a2240f052eb14a374b7a75950cbbc3d.zip
Started MessageWindow
Currently, MessageWindow splits a string into four lines and displays it when necessary. However, there is currently no way to close the window, it does not animate upon opening and more.
Diffstat (limited to 'src/com/fourisland/fourpuzzle/gamestate/mapview/event/SpecialEvent.java')
-rwxr-xr-xsrc/com/fourisland/fourpuzzle/gamestate/mapview/event/SpecialEvent.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/fourisland/fourpuzzle/gamestate/mapview/event/SpecialEvent.java b/src/com/fourisland/fourpuzzle/gamestate/mapview/event/SpecialEvent.java index c48b312..5bd312a 100755 --- a/src/com/fourisland/fourpuzzle/gamestate/mapview/event/SpecialEvent.java +++ b/src/com/fourisland/fourpuzzle/gamestate/mapview/event/SpecialEvent.java
@@ -51,7 +51,7 @@ public class SpecialEvent {
51 */ 51 */
52 public void DisplayMessage(String message) 52 public void DisplayMessage(String message)
53 { 53 {
54 throw new UnsupportedOperationException("Not yet implemented"); 54 mapView.displayMessage(message);
55 } 55 }
56 56
57 /** 57 /**