summaryrefslogtreecommitdiff
path: root/src/tesseract/objects/remote/KeyInfo.java
blob: 844ee24aa93669e6302c268ea7705ecf9c484d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package tesseract.objects.remote;

import java.io.Serializable;

public class KeyInfo implements Serializable {
	/**
	 * Serial UID.
	 */
	private static final long serialVersionUID = -1378329597453071920L;
	
	private int keyCode;
	
	public KeyInfo(int keyCode) {
		this.keyCode = keyCode;
	}
	
	public int getKeyCode() {
		return keyCode;
	}
}