Commit 85a2691e authored by daniel.tang's avatar daniel.tang

Upload New File

parent 464a1f98
package programmingP2week1;
import static java.lang.System.out;
public class Coordinate1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Coordinate player = new Coordinate();
player.x = 1;
player.y = 5;
Coordinate baddie = new Coordinate();
baddie.x = 8;
baddie.y = 12;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment