com.rcll.llsf_comm.Key Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for the RoboCup Logistics League
package com.rcll.llsf_comm;
public class Key {
public int cmp_id;
public int msg_id;
public Key(int cmp_id, int msg_id) {
this.cmp_id = cmp_id;
this.msg_id = msg_id;
}
}