blob: 3402430805f34324869e3eeaf01d509609689063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package ch.asynk.gdx.boardgame;
import com.badlogic.gdx.assets.AssetManager;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.BitmapFont;
import com.badlogic.gdx.graphics.g2d.NinePatch;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
public class Assets extends AssetManager
{
public Texture getTexture(String assetName)
{
return get(assetName, Texture.class);
}
public NinePatch getNinePatch(String assetName, int left, int right, int top, int bottom)
{
return new NinePatch(get(assetName, Texture.class), left, right, top, bottom);
}
public TextureAtlas getAtlas(String assetName)
{
return get(assetName, TextureAtlas.class);
}
public BitmapFont getFont(String assetName)
{
return get(assetName, BitmapFont.class);
}
}
|