implement config re-loading

This commit is contained in:
2022-05-11 20:14:10 +02:00
parent a4b110773e
commit 793b25251c
9 changed files with 145 additions and 96 deletions

View File

@@ -1,8 +1,18 @@
package gg.malloc.defense.model;
public interface Waypoint {
double getX();
double getY();
double getZ();
String getName();
public class Waypoint {
double m_x;
double m_y;
double m_z;
String m_name;
public Waypoint(double x, double y, double z) {
m_x = x;
m_y = y;
m_z = z;
}
public double getX() { return m_x; }
public double getY() { return m_y; }
public double getZ() { return m_z; }
}