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

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

Added cities to the game, moved the map to a new static class, and added incomplete support for capturing cities with soldiers.

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