PlayerGoToHospitalEvent.java :  » Game » campusrichman » sysu » androidclub » campusrichman » events » Android Open Source

Android Open Source » Game » campusrichman 
campusrichman » sysu » androidclub » campusrichman » events » PlayerGoToHospitalEvent.java
package sysu.androidclub.campusrichman.events;

import sysu.androidclub.campusrichman.utils.Coordinate;


public class PlayerGoToHospitalEvent extends PlayerEvent {
  public Coordinate hospitalPlace;
  
  public PlayerGoToHospitalEvent(int from, int to, Coordinate hospital)
  {
    super();
    subtype = Event.PLAYER_SUB_GOTOHOSPITAL;
    hospitalPlace = hospital;
    this.from = from;
    this.to = to;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.