apm2/src/main/java/com/kaijin/AdvPowerMan/Coords.java
2015-05-25 08:55:25 -04:00

18 lines
484 B
Java
Executable file

/*******************************************************************************
* Copyright (c) 2012-2013 Yancarlo Ramsey and CJ Bowman
* Licensed as open source with restrictions. Please see attached LICENSE.txt.
******************************************************************************/
package com.kaijin.AdvPowerMan;
public class Coords{
public int x;
public int y;
public int z;
public Coords(int x, int y, int z) {
this.x = x;
this.y = y;
this.z = z;
}
}