blob: d065d76beb78824efb46a351ce1f97ee2e553399 (
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
31
32
33
34
35
36
|
package ch.asynk.gdx.boardgame;
import com.badlogic.gdx.audio.Sound;
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);
}
public Sound getSound(String assetName)
{
return get(assetName, Sound.class);
}
}
|