summaryrefslogtreecommitdiff
path: root/NET/worlds/scape/RoomSubscribeInfo.java
blob: 0d989599c406914a58a6d0283eb49992206ffc8d (plain) (blame)
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;
   }
}