source: advance-wars/src/com/medievaltech/unit/Transport.java@ c3ad11c

Last change on this file since c3ad11c was c3ad11c, checked in by dportnoy <devnull@…>, 13 years ago

Units are now colored based on the player that controls them. The controlling player is specified in the unit's constructor.

  • Property mode set to 100644
File size: 162 bytes
RevLine 
[113d7cf]1package com.medievaltech.unit;
[abe7b3d]2
[1a1e8c7]3public abstract class Transport extends Unit {
[abe7b3d]4 public Unit storedUnit;
5
[c3ad11c]6 public Transport(Player p) {
[1a1e8c7]7 super(p);
8 }
[abe7b3d]9}
Note: See TracBrowser for help on using the repository browser.