Back to project page gameengine.
The source code is released under:
Apache License
If you think the Android project gameengine 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.garrapeta.gameengine.module; /* www . j a va 2s.co m*/ public abstract class LevelActionsModule<V, P> extends LoadedLevelActionsModule<V, V, P> { /** * Constructor * * @param minimumLevel */ public LevelActionsModule(short minimumLevel) { super(minimumLevel); } @Override protected final V obtain(V value) { return value; } @Override protected void onRelease(V value) { // nothing } }