1
2
3
4
5
6
7
8
9
10
11
12
13 package org.gscg.common;
14
15 import nl.tudelft.simulation.actor.ActorInterface;
16 import nl.tudelft.simulation.language.d3.DirectedPoint;
17
18 /***
19 * <br>
20 * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
21 * Delft, the Netherlands. All rights reserved.
22 *
23 * See for project information <a href="http://www.simulation.tudelft.nl/">
24 * www.simulation.tudelft.nl </a>.
25 *
26 * The source code and binary code of this software is proprietary information
27 * of Delft University of Technology.
28 *
29 * @author <a
30 * href="http://www.tbm.tudelft.nl/webstaf/alexandv/index.htm">Alexander
31 * Verbraeck </a>
32 * @version $Revision: 1.1 $ $Date: 2005/06/16 12:33:54 $
33 * @since 1.0.0 <br>
34 */
35 public interface GameActorInterface extends ActorInterface
36 {
37 /***
38 * @return the location of the game actor on the small map
39 */
40 DirectedPoint getSmallMapLocation();
41 }