source:
advance-wars/src/com/medievaltech/game/Transport.java@
5d77d43
Last change on this file since 5d77d43 was 1a1e8c7, checked in by , 14 years ago | |
---|---|
|
|
File size: 195 bytes |
Rev | Line | |
---|---|---|
[abe7b3d] | 1 | package com.medievaltech.game; |
2 | ||
[1a1e8c7] | 3 | import android.graphics.Paint; |
4 | ||
5 | public 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.