mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 06:18:44 +00:00
Started on Request/Response packets for the Boat customization to begin the boat customization process.
tags: #story[1142]
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user