summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/fourisland/fourpuzzle/util')
-rw-r--r--src/com/fourisland/fourpuzzle/util/Renderable.java18
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
6package com.fourisland.fourpuzzle.util;
7
8import java.awt.Graphics2D;
9
10/**
11 *
12 * @author hatkirby
13 */
14public interface Renderable {
15
16 public void render(Graphics2D g);
17
18}