|
Last change
on this file was 41c11dd, checked in by dportnoy <devnull@…>, 14 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 | |
|---|
| 1 | package com.medievaltech.unit;
|
|---|
| 2 |
|
|---|
| 3 | import com.medievaltech.advancewars.Player;
|
|---|
| 4 |
|
|---|
| 5 | public 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.