diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2018-10-18 16:48:50 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2018-10-18 16:48:50 +0200 |
commit | 3be9db7d4d603791727b2cb3bcec7ae38d3cda50 (patch) | |
tree | 4d61605148fd394bb9523b0f8207132769b7ef21 /core/src/ch/asynk/gdx/boardgame/animations | |
parent | ab02adb2df8edd794c036547fb61e7f904da780c (diff) | |
download | gdx-boardgame-3be9db7d4d603791727b2cb3bcec7ae38d3cda50.zip gdx-boardgame-3be9db7d4d603791727b2cb3bcec7ae38d3cda50.tar.gz |
kill pieces subdirectory for now
Diffstat (limited to 'core/src/ch/asynk/gdx/boardgame/animations')
-rw-r--r-- | core/src/ch/asynk/gdx/boardgame/animations/BounceAnimation.java | 2 | ||||
-rw-r--r-- | core/src/ch/asynk/gdx/boardgame/animations/MoveAnimation.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/src/ch/asynk/gdx/boardgame/animations/BounceAnimation.java b/core/src/ch/asynk/gdx/boardgame/animations/BounceAnimation.java index 17f0a53..cd4f3aa 100644 --- a/core/src/ch/asynk/gdx/boardgame/animations/BounceAnimation.java +++ b/core/src/ch/asynk/gdx/boardgame/animations/BounceAnimation.java @@ -5,7 +5,7 @@ import java.lang.Math; import com.badlogic.gdx.utils.Pool; import com.badlogic.gdx.graphics.g2d.Batch; -import ch.asynk.gdx.boardgame.pieces.Piece; +import ch.asynk.gdx.boardgame.Piece; public class BounceAnimation extends TimedAnimation implements Pool.Poolable { diff --git a/core/src/ch/asynk/gdx/boardgame/animations/MoveAnimation.java b/core/src/ch/asynk/gdx/boardgame/animations/MoveAnimation.java index e47eb3a..823f7c6 100644 --- a/core/src/ch/asynk/gdx/boardgame/animations/MoveAnimation.java +++ b/core/src/ch/asynk/gdx/boardgame/animations/MoveAnimation.java @@ -6,7 +6,7 @@ import com.badlogic.gdx.utils.Pool; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.math.Vector3; -import ch.asynk.gdx.boardgame.pieces.Piece; +import ch.asynk.gdx.boardgame.Piece; import ch.asynk.gdx.boardgame.Path; public class MoveAnimation implements Animation, Pool.Poolable |