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

package com.fourisland.fourpuzzle.gamestate;

import com.fourisland.fourpuzzle.util.Inputable;
import com.fourisland.fourpuzzle.util.Renderable;

/**
 *
 * @author hatkirby
 */
public interface GameState extends Renderable, Inputable {
    
    public void initalize();
    public void deinitalize();
    
    public void doGameCycle();
    
}