RuneHive-Game
Loading...
Searching...
No Matches
BattlegroundTeam.java
Go to the documentation of this file.
1package com.runehive.content.activity.impl.battleground;
2
3import com.runehive.game.world.entity.mob.player.Player;
4
5import java.util.ArrayList;
6import java.util.List;
7
8public class BattlegroundTeam {
9 public List<Player> team = new ArrayList<>(4);
10
11
12}