#document

This commit is contained in:
Calum
2017-09-26 01:12:43 +13:00
parent 83871a0336
commit e990c68d40
3 changed files with 2 additions and 3 deletions
@@ -72,7 +72,7 @@ public class ClientToServerThread implements Runnable {
private Timer upWindPacketTimer = new Timer(); private Timer upWindPacketTimer = new Timer();
private Timer downWindPacketTimer = new Timer(); private Timer downWindPacketTimer = new Timer();
private boolean upwindTimerFlag = false, downwindTimerFlag = false; private boolean upwindTimerFlag = false, downwindTimerFlag = false;
static public final int PACKET_SENDING_INTERVAL_MS = 100; public static final int PACKET_SENDING_INTERVAL_MS = 100;
private int clientId = -1; private int clientId = -1;
@@ -402,7 +402,6 @@ public class GameView3D extends GameView{
playerYacht.toggleSail(); playerYacht.toggleSail();
playerBoatAnimationTimer = new AnimationTimer() { playerBoatAnimationTimer = new AnimationTimer() {
double count = 60;
Point2D lastLocation = scaledPoint.findScaledXY(playerYacht.getLocation()); Point2D lastLocation = scaledPoint.findScaledXY(playerYacht.getLocation());
@Override @Override
@@ -18,7 +18,7 @@ import seng302.model.stream.xml.parser.RegattaXMLData;
import seng302.utilities.XMLParser; import seng302.utilities.XMLParser;
/** /**
* Created by cir27 on 23/09/17. * Makes maps from map definition xml files.
*/ */
public class MapMaker { public class MapMaker {