RuneHive-Game
Loading...
Searching...
No Matches
DuelConstants.java
Go to the documentation of this file.
1package com.runehive.content.activity.impl.duelarena;
2
3import com.google.common.collect.ImmutableList;
4import com.runehive.game.world.position.Area;
5import com.runehive.game.world.position.Position;
6import com.runehive.game.world.position.impl.SquareArea;
7
8public class DuelConstants {
9
10 private DuelConstants() {
11
12 }
13
14 public static final Position DUEL_RESPAWN = new Position(3366, 3266);
15
16 public static final ImmutableList<SquareArea> RESPAWN_LOCATIONS = ImmutableList.of(
17 new SquareArea(3356, 3268, 3359, 3274),
18 new SquareArea(3360, 3274, 3378, 3277),
19 new SquareArea(3355, 3274, 3357, 3278),
20 new SquareArea(3373, 3264, 3373, 3268));
21
22
23}
static final ImmutableList< SquareArea > RESPAWN_LOCATIONS
Represents a single tile on the game world.
Definition Position.java:14