Last change
on this file since bdd63ba was 113d7cf, checked in by dportnoy <devnull@…>, 14 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
|
Line | |
---|
1 | package com.medievaltech.unit;
|
---|
2 |
|
---|
3 | import android.graphics.Paint;
|
---|
4 |
|
---|
5 | public 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.