source: advance-wars/src/com/medievaltech/game/Soldier.java@ abe7b3d

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

Changed the package names from com.example.* to com.medievaltech.*

  • Property mode set to 100644
File size: 632 bytes
RevLine 
[abe7b3d]1package com.medievaltech.game;
[a0f5455]2
3import java.util.List;
4
5import android.graphics.Point;
6
7public class Soldier extends Unit{
8
9 @Override
10 public boolean move(Point point) {
11 // TODO Auto-generated method stub
12 return false;
13 }
14
15 @Override
16 public boolean attack(Point point) {
17 // TODO Auto-generated method stub
18 return false;
19 }
20
21 @Override
22 public List<Point> getRange() {
23 // TODO Auto-generated method stub
24 return null;
25 }
26
27 @Override
28 public void die()
29 {
30
31 }
32
33 @Override
34 public List<Point> getAttackRange() {
35 // TODO Auto-generated method stub
36 return null;
37 }
38
39
40
41
42}
Note: See TracBrowser for help on using the repository browser.