blob: 8793adb801b9a256d6e3ca4299b9c49963c28116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package ch.epfl.xblast.server;
public interface Ticks {
/**
* Duration of the death of a player.
*/
public static int PLAYER_DYING_TICKS = 8;
/**
* Duration of the invulnerability of a player.
*/
public static int PLAYER_INVULNERABLE_TICKS = 64;
/**
* Duration of the timer of a bomb.
*/
public static int BOMB_FUSE_TICKS = 100;
/**
* Duration of an explosion.
*/
public static int EXPLOSION_TICKS = 30;
/**
* Duration of crumbling of a wall.
*/
public static int WALL_CRUMBLLING_TICKS = EXPLOSION_TICKS;
/**
* Duration of the presence of a bonus.
*/
public static int BONUS_DISAPPEARING_TICKS = EXPLOSION_TICKS;
}
|