00001 /* 00002 * $Id: RCPartner_8java-source.html,v 1.2 2002/07/07 20:59:52 stork Exp $ 00003 * 00004 * $Log: RCPartner_8java-source.html,v $ 00004 * Revision 1.2 2002/07/07 20:59:52 stork 00004 * update dokumenation 00004 * 00005 * Revision 1.2 2002/06/07 18:14:09 stork 00006 * add log support 00007 * 00008 * 00009 */ 00010 00011 public class RCPartner { 00012 00013 public RCObject Player; 00014 public double angle; 00015 public double distance; 00016 public double likelihood = 0.; 00017 00018 public RCPartner(RCObject Player, double angle, double distance){ 00019 this.Player = Player; 00020 this.angle = angle; 00021 this.distance = distance; 00022 } 00023 00024 public RCPartner(){ 00025 this.Player = new RCObject(); 00026 } 00027 00028 }