source: advance-wars/src/com/medievaltech/game/Transport.java@ 1a1e8c7

Last change on this file since 1a1e8c7 was 1a1e8c7, checked in by dportnoy <devnull@…>, 14 years ago

Added a basic draw function to Unit and made some other minor code changes.

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