diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2018-09-13 18:55:07 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2018-09-13 18:55:07 +0200 |
commit | 7eb1beae9fd79a07783bd850a5d739a9813797dc (patch) | |
tree | 0cac63174a7d3b4e8de54b2ec457957918c0608e /core/src/ch/asynk/zproject/GameHud.java | |
parent | f3eed35487ae3049bde27d3a20fd36a34cef9469 (diff) | |
download | gdx-boardgame-7eb1beae9fd79a07783bd850a5d739a9813797dc.zip gdx-boardgame-7eb1beae9fd79a07783bd850a5d739a9813797dc.tar.gz |
ZProject -> GdxBoardTest
Diffstat (limited to 'core/src/ch/asynk/zproject/GameHud.java')
-rw-r--r-- | core/src/ch/asynk/zproject/GameHud.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/ch/asynk/zproject/GameHud.java b/core/src/ch/asynk/zproject/GameHud.java index a28f4ea..62a1046 100644 --- a/core/src/ch/asynk/zproject/GameHud.java +++ b/core/src/ch/asynk/zproject/GameHud.java @@ -50,7 +50,7 @@ public class GameHud implements Disposable, Touchable @Override public boolean touch(float x, float y) { if (root.touch(x, y)) { - ZProject.debug("GameHud", String.format("touchDown : %f %f", x, y)); + GdxBoardTest.debug("GameHud", String.format("touchDown : %f %f", x, y)); if (root.touched() == this.next) onNext(); return true; |