Back to project page Tanks.
The source code is released under:
MIT License
If you think the Android project Tanks 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.ThirtyNineEighty.System; /*w w w . j a v a 2 s. c o m*/ import com.ThirtyNineEighty.Game.Menu.IMenu; import com.ThirtyNineEighty.Game.Worlds.IWorld; public interface IContent { void setWorld(IWorld world); void setWorld(IWorld world, Object args); IWorld getWorld(); void setMenu(IMenu menu); void setMenu(IMenu menu, Object args); IMenu getMenu(); void bindProgram(ISubprogram subprogram); void unbindProgram(ISubprogram subprogram); }