Changeset 1a1e8c7 in advance-wars for src/com/medievaltech/game/Transport.java


Ignore:
Timestamp:
Jan 31, 2011, 11:44:53 PM (14 years ago)
Author:
dportnoy <devnull@…>
Branches:
master
Children:
00c432c
Parents:
abe7b3d
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/com/medievaltech/game/Transport.java

    rabe7b3d r1a1e8c7  
    11package com.medievaltech.game;
    22
    3 public abstract class Transport extends Unit
    4 {
     3import android.graphics.Paint;
     4
     5public abstract class Transport extends Unit {
    56        public Unit storedUnit;
    67       
    7 
     8        public Transport(Paint p) {
     9                super(p);
     10        }
    811}
Note: See TracChangeset for help on using the changeset viewer.