blob: 84dc6b0695c8877aae0d4f7855fb0cfae1607554 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package kz.ilotterytea.frogartha;
public class FrogarthaConstants {
public static class URLS {
public static final String SESSION_WSS = "ws://localhost:20015";
}
public static class Player {
public static final float MAX_JUMP_STRENGTH = 1.5f;
public static final float MAX_JUMP_HEIGHT = 2f;
public static final float JUMP_SPEED = 10f;
}
public static class Room {
public static final int MAX_PLAYERS = 30;
}
}
|