Rev 265 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 265 | chris | 1 | package com.gebauz.Bauzoid.graphics.sprite; |
| 2 | |||
| 3 | import com.badlogic.gdx.Gdx; |
||
| 4 | import com.gebauz.Bauzoid.app.Consts; |
||
| 5 | |||
| 6 | public class SpriteUtil |
||
| 7 | { |
||
| 8 | public static final String LOG_TAG = Consts.LOG_TAG + ":SpriteUtil"; |
||
| 9 | public static boolean verbose = true; |
||
| 10 | |||
| 11 | private SpriteUtil() {} |
||
| 12 | |||
| 13 | public static void log(String tag, String msg) |
||
| 14 | { |
||
| 15 | if (verbose) |
||
| 16 | Gdx.app.log(tag, msg); |
||
| 17 | } |
||
| 18 | |||
| 19 | // public AnimatedSprite createAnimatedSpriteFromFile(Graphics graphics, FileHandle file) |
||
| 20 | // { |
||
| 21 | // return null; |
||
| 22 | // } |
||
| 23 | |||
| 24 | } |