コード例 #1
0
ファイル: Ship.cs プロジェクト: sleemjm1/IN710-sleemjm1
        public void OnOutOfFuelEvent(Point currShipLocation)
        {
            ShipEventArgs sea = new ShipEventArgs(currShipLocation);

            if (OutOfFuelEvent != null)
            {
                OutOfFuelEvent(this, sea);
            }
        }
コード例 #2
0
ファイル: PetrolBot.cs プロジェクト: sleemjm1/IN710-sleemjm1
 public void OutOfFuelEventHandler(object o, ShipEventArgs e)
 {
     shipLocation = e.ShipLocation;
     updateCurrentLocation();
     //botCurrentLocation = e.ShipLocation;
 }
コード例 #3
0
ファイル: Ship.cs プロジェクト: sleemjm1/IN710-sleemjm1
 public void OnOutOfFuelEvent(Point currShipLocation)
 {
     ShipEventArgs sea = new ShipEventArgs(currShipLocation);
        if (OutOfFuelEvent != null)
        OutOfFuelEvent(this, sea);
 }
コード例 #4
0
 public void OutOfFuelEventHandler(object o, ShipEventArgs e)
 {
     shipLocation = e.ShipLocation;
     updateCurrentLocation();
     //botCurrentLocation = e.ShipLocation;
 }