add initial support for virtual destinations
[fleet.git] / src / edu / berkeley / fleet / api / Destination.java
1 package edu.berkeley.fleet.api;
2
3 public abstract class Destination {
4
5     Destination() { }
6
7     /** return the Ship to which this BenkoBox belongs */
8     public abstract Ship   getShip();
9
10 }