Back to project page candy-drop.
The source code is released under:
Copyright (c) 2014, Gregory Martin All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...
If you think the Android project candy-drop 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.gregfmartin.facetapper.utils; // ww w .ja va 2 s . c om /** * Interface containing methods for abstracting the logic and drawing process in the render iterations. */ public interface CoreUtil { /** * All non-drawing code will be placed in this method. */ abstract public void logic(float delta); /** * Only drawing code will be placed in this method. */ abstract public void draw(float delta); }