Back to project page wannabe.
The source code is released under:
MIT License
If you think the Android project wannabe listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2013 Patrick Forhan. package wannabe; //w w w .j a v a 2 s. c o m import wannabe.grid.Grid; import wannabe.projection.Projection; public interface UI { void setSize(int width, int height); void setGrid(Grid grid); void setCamera(Camera camera); Camera getCamera(); void setProjection(Projection projection); /** Called when the clock advances and the UI should be rendered. */ void render(); }