summaryrefslogtreecommitdiff
path: root/shared/src/main/java/kz/ilotterytea/frogartha/FrogarthaConstants.java
blob: e205bf53942e28567d495066acc4d1571f8e1d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
    }

    public static class Chat {
        public static final int MAX_MESSAGE_LENGTH = 100;
        public static final int MESSAGE_PER_MS = 500;
    }
}