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; /* ww w . j ava 2 s . c o m*/ public abstract class SyncGameMessage extends GameMessage { public SyncGameMessage() { this(MESSAGE_PRIORITY_DEFAULT); } public SyncGameMessage(int priority) { mPriority = priority; } @Override public final void onPosted(GameWorld world) { world.add(this); } }