diff options
Diffstat (limited to 'src/com/fourisland/fourpuzzle/util/Renderable.java')
| -rw-r--r-- | src/com/fourisland/fourpuzzle/util/Renderable.java | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/src/com/fourisland/fourpuzzle/util/Renderable.java b/src/com/fourisland/fourpuzzle/util/Renderable.java new file mode 100644 index 0000000..a6aeb1a --- /dev/null +++ b/src/com/fourisland/fourpuzzle/util/Renderable.java | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* | ||
| 2 | * To change this template, choose Tools | Templates | ||
| 3 | * and open the template in the editor. | ||
| 4 | */ | ||
| 5 | |||
| 6 | package com.fourisland.fourpuzzle.util; | ||
| 7 | |||
| 8 | import java.awt.Graphics2D; | ||
| 9 | |||
| 10 | /** | ||
| 11 | * | ||
| 12 | * @author hatkirby | ||
| 13 | */ | ||
| 14 | public interface Renderable { | ||
| 15 | |||
| 16 | public void render(Graphics2D g); | ||
| 17 | |||
| 18 | } | ||
