Added a bomb token thing

This commit is contained in:
Mysticate 2015-07-23 16:26:43 -04:00
parent 06d4de16cf
commit 365968f41d
1 changed files with 16 additions and 0 deletions

View File

@ -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();
}
}