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

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