Added a bomb token thing
This commit is contained in:
parent
06d4de16cf
commit
365968f41d
@ -0,0 +1,16 @@
|
||||
package nautilus.game.arcade.game.games.lobbers;
|
||||
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
public class BombToken
|
||||
{
|
||||
public final String Thrower;
|
||||
public Location A = null;
|
||||
public Location B = null;
|
||||
|
||||
public BombToken(Player player)
|
||||
{
|
||||
Thrower = player.getName();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user