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; /*w ww . j a v a 2 s . c o m*/ /* java */ import java.lang.Math; import java.util.ArrayList; /* jbox2d */ import org.jbox2d.common.Vec2; /* local */ import com.nikolajbaer.game.objects.*; import com.nikolajbaer.game.Game; import com.nikolajbaer.Util; public class LambPlayer extends HunterPlayer { public LambPlayer(PlayerObject go){ super(go); } protected void doAttack(){ // lambs only love } }