diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-12-18 10:38:24 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-12-18 11:12:01 +0100 |
commit | 31e86605f68f3069fafa8d99fc24f7fbbb5e3a54 (patch) | |
tree | e0c2718d9a34408fc8ec73265592c745c2ea2980 /core/src/ch/asynk/rustanddust/engine/gfx | |
parent | 85f55649a107e47a8103dd74f0bab7fde5bc6ec1 (diff) | |
download | RustAndDust-31e86605f68f3069fafa8d99fc24f7fbbb5e3a54.zip RustAndDust-31e86605f68f3069fafa8d99fc24f7fbbb5e3a54.tar.gz |
cleanup tree using fix_java
Diffstat (limited to 'core/src/ch/asynk/rustanddust/engine/gfx')
4 files changed, 0 insertions, 11 deletions
diff --git a/core/src/ch/asynk/rustanddust/engine/gfx/animations/DiceAnimation.java b/core/src/ch/asynk/rustanddust/engine/gfx/animations/DiceAnimation.java index e5a1a02..8ecd924 100644 --- a/core/src/ch/asynk/rustanddust/engine/gfx/animations/DiceAnimation.java +++ b/core/src/ch/asynk/rustanddust/engine/gfx/animations/DiceAnimation.java @@ -4,7 +4,6 @@ import java.util.Random; import com.badlogic.gdx.audio.Sound; import com.badlogic.gdx.graphics.Texture; -import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; diff --git a/core/src/ch/asynk/rustanddust/engine/gfx/animations/InfantryFireAnimation.java b/core/src/ch/asynk/rustanddust/engine/gfx/animations/InfantryFireAnimation.java index 233305a..20e1426 100644 --- a/core/src/ch/asynk/rustanddust/engine/gfx/animations/InfantryFireAnimation.java +++ b/core/src/ch/asynk/rustanddust/engine/gfx/animations/InfantryFireAnimation.java @@ -1,17 +1,12 @@ package ch.asynk.rustanddust.engine.gfx.animations; -import java.util.Random; - import com.badlogic.gdx.utils.Disposable; import com.badlogic.gdx.utils.Pool; -import com.badlogic.gdx.audio.Sound; -import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; -import ch.asynk.rustanddust.engine.gfx.Drawable; import ch.asynk.rustanddust.engine.gfx.Animation; public class InfantryFireAnimation implements Disposable, Animation, Pool.Poolable diff --git a/core/src/ch/asynk/rustanddust/engine/gfx/animations/SpriteAnimation.java b/core/src/ch/asynk/rustanddust/engine/gfx/animations/SpriteAnimation.java index 4d10210..5a28b3d 100644 --- a/core/src/ch/asynk/rustanddust/engine/gfx/animations/SpriteAnimation.java +++ b/core/src/ch/asynk/rustanddust/engine/gfx/animations/SpriteAnimation.java @@ -6,10 +6,8 @@ import com.badlogic.gdx.utils.Disposable; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.Batch; -import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; -import ch.asynk.rustanddust.engine.gfx.Drawable; import ch.asynk.rustanddust.engine.gfx.Animation; public class SpriteAnimation implements Disposable, Animation diff --git a/core/src/ch/asynk/rustanddust/engine/gfx/animations/TankFireAnimation.java b/core/src/ch/asynk/rustanddust/engine/gfx/animations/TankFireAnimation.java index 82a87fd..4bc7be9 100644 --- a/core/src/ch/asynk/rustanddust/engine/gfx/animations/TankFireAnimation.java +++ b/core/src/ch/asynk/rustanddust/engine/gfx/animations/TankFireAnimation.java @@ -1,7 +1,5 @@ package ch.asynk.rustanddust.engine.gfx.animations; -import java.util.Random; - import com.badlogic.gdx.utils.Disposable; import com.badlogic.gdx.utils.Pool; @@ -9,7 +7,6 @@ import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.graphics.glutils.ShapeRenderer; -import ch.asynk.rustanddust.engine.gfx.Drawable; import ch.asynk.rustanddust.engine.gfx.Animation; public class TankFireAnimation implements Disposable, Animation, Pool.Poolable |