blob: d5cdb06da8fd11f9f9bb69e3fdbc2c36249d1f55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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;
}
}
|