Back to project page googol.
The source code is released under:
MIT License
If you think the Android project googol listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.martinb.googol.Control; //from w w w .jav a2 s . c o m import com.badlogic.gdx.graphics.Texture; /* * Loads and contains all the images, sounds and music */ public class Assets { public Texture test; public void load() { test = new Texture("badlogic.jpg"); } }