package kayao.server; public class Collision { protected int mId; protected int mTime; public Collision(int id, int time) { mId=id; mTime=time; } public int getId() { return mId; } public int getTime() { return mTime; } public void setTime(int time) { mTime=time; } }