1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package NET.worlds.scape; public class RoomSubscribeInfo { public float x; public float y; public float z; public float d; public RoomSubscribeInfo(float x, float y, float z, float d) { this.x = x; this.y = y; this.z = z; this.d = d; } }