diff options
Diffstat (limited to 'src/com/fourisland/fourpuzzle/gamestate/GameState.java')
| -rw-r--r-- | src/com/fourisland/fourpuzzle/gamestate/GameState.java | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/src/com/fourisland/fourpuzzle/gamestate/GameState.java b/src/com/fourisland/fourpuzzle/gamestate/GameState.java index 362631d..de4d7de 100644 --- a/src/com/fourisland/fourpuzzle/gamestate/GameState.java +++ b/src/com/fourisland/fourpuzzle/gamestate/GameState.java | |||
| @@ -13,12 +13,12 @@ import java.awt.Graphics2D; | |||
| 13 | */ | 13 | */ | 
| 14 | public interface GameState { | 14 | public interface GameState { | 
| 15 | 15 | ||
| 16 | public void initalize() throws Exception; | 16 | public void initalize(); | 
| 17 | public void deinitalize() throws Exception; | 17 | public void deinitalize(); | 
| 18 | 18 | ||
| 19 | public void processInput() throws Exception; | 19 | public void processInput(); | 
| 20 | public void doGameCycle() throws Exception; | 20 | public void doGameCycle(); | 
| 21 | public void render(Graphics2D g) throws Exception; | 21 | public void render(Graphics2D g); | 
| 22 | 22 | ||
| 23 | } | 23 | } | 
| 24 | 24 | ||
