diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2009-02-03 21:11:23 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2009-02-03 21:11:23 -0500 |
commit | 029190712a8f38cef760741cf53652e0ccd89172 (patch) | |
tree | bf1a01b9103592f4dda7511e9b23913bbbd98870 /src/com/fourisland/fourpuzzle/transition/InTransition.java | |
parent | ce6ae1b56e4f6548dc19974474c8ee2d8cece13a (diff) | |
download | fourpuzzle-029190712a8f38cef760741cf53652e0ccd89172.tar.gz fourpuzzle-029190712a8f38cef760741cf53652e0ccd89172.tar.bz2 fourpuzzle-029190712a8f38cef760741cf53652e0ccd89172.zip |
Started working on new Transitions
The old transition implementation was old and patchy. The new one is planned to be extensible and to work properly with all transitions. Currently this is not so, but with work it hopefully will be.
Diffstat (limited to 'src/com/fourisland/fourpuzzle/transition/InTransition.java')
-rw-r--r-- | src/com/fourisland/fourpuzzle/transition/InTransition.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/com/fourisland/fourpuzzle/transition/InTransition.java b/src/com/fourisland/fourpuzzle/transition/InTransition.java new file mode 100644 index 0000000..a326f52 --- /dev/null +++ b/src/com/fourisland/fourpuzzle/transition/InTransition.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.transition; | ||
7 | |||
8 | import java.awt.image.BufferedImage; | ||
9 | |||
10 | /** | ||
11 | * | ||
12 | * @author hatkirby | ||
13 | */ | ||
14 | public interface InTransition extends Transition { | ||
15 | |||
16 | public void setPreTransition(BufferedImage preTransition); | ||
17 | |||
18 | } | ||