Back to project page FloppyThreeD.
The source code is released under:
MIT License
If you think the Android project FloppyThreeD 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.jtechapps.FloppyThreeD; //from w ww . j a v a2 s . com import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.g2d.BitmapFont; public interface NativeInterface { public void garbagecollect(); public void dispose(); public void setAssetManger(AssetManager assetmanager); public AssetManager getAssetManger(); public void setFont1(BitmapFont font); public BitmapFont getFont1(); }