Trying to build the thing w/ netbeans.
Encountered the following two errors:
build:
Compiling source files
Compiling 89 source files to C:\Game Engines\VictoryEngine\trunk\bin
C:\Game Engines\VictoryEngine\trunk\src\org\openwar\victory\geom\TransformableGeometry.java:7: types org.openwar.victory.math.Transformable and org.openwar.victory.geom.Geometry are incompatible; both define moved(org.openwar.victory.math.Vector2), but with unrelated return types
public interface TransformableGeometry extends Geometry, Transformable {
C:\Game Engines\VictoryEngine\trunk\src\org\openwar\victory\geom\TransformableVolume.java:13: types org.openwar.victory.geom.TransformableGeometry and org.openwar.victory.geom.Volume are incompatible; both define moved(org.openwar.victory.math.Vector2), but with unrelated return types
public interface TransformableVolume extends Volume, TransformableGeometry {
2 errors
What can I do to fix this?
Thanks.