Back to project page android-jplay.
The source code is released under:
Copyright (c) Nikolaj Baer All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. ...
If you think the Android project android-jplay 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.nikolajbaer.game.players; /*from w w w. j a va 2 s . c om*/ /* local */ import com.nikolajbaer.game.objects.*; public class LivePlayer extends GamePlayer { public LivePlayer(PlayerObject po){ super(po); } public void tick(){ } }