Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- abstract public class Assets{
- public static AssetManager manager;
- // ...
- public static final AssetDescriptor<Sound> sound_explosion = new AssetDescriptor<Sound>("res/sounds/explosion2.ogg", Sound.class);
- public static void load(){
- // ...
- manager.load(sound_explosion);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment