aboutsummaryrefslogtreecommitdiff
path: root/mobileapp/src/smoots/udesign/packet/Packet.java
blob: a28216be7e7d3f4bcd78e4d67b6a7ffbb0011f61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package smoots.udesign.packet;

/**
 * Interface for the Packet that contains phone input to the server. 
 */
public interface Packet {
	/**
	 * Return JSON formatted packet that can be sent through socket.
	 * @return JSON formatted packet
	 */
	public String packetToText();
}