package rip.tilly.bedwars.game.arena; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.RequiredArgsConstructor; import lombok.Setter; import rip.tilly.bedwars.utils.CustomLocation; @Getter @Setter @AllArgsConstructor @RequiredArgsConstructor /** * Created by Lucanius * Project: BedWars */ public class CopiedArena { private CustomLocation a; private CustomLocation b; private CustomLocation min; private CustomLocation max; private CustomLocation teamAmin; private CustomLocation teamAmax; private CustomLocation teamBmin; private CustomLocation teamBmax; }