Started on Request/Response packets for the Boat customization to begin the boat customization process.

tags: #story[1142]
This commit is contained in:
Alistair McIntyre
2017-08-14 13:26:51 +12:00
parent e4cc5a0950
commit bedd742c93
4 changed files with 85 additions and 3 deletions
@@ -0,0 +1,19 @@
package seng302.gameServer.server.messages;
public class CustomizeRequestMessage extends Message {
CustomizeRequestType customizeType;
private static int MESSAGE_LENGTH = 2;
private Double sourceID;
public CustomizeRequestMessage(CustomizeRequestType customizeType, Double sourceID,)
@Override
public int getSize() {
return 1; // placeholder
}
}