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

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

Implemented saving/loading of the map and the units on it. Also did some package refactoring (renamed com.medievaltech.game to com.medievaltech.unit and moved some classes into com.medievaltech.advancewars)

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