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

Last change on this file since 511177b 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
Line 
1package com.medievaltech.unit;
2
3public abstract class Transport extends Unit {
4 public Unit storedUnit;
5
6 public Transport(Player p) {
7 super(p);
8 }
9}
Note: See TracBrowser for help on using the repository browser.