Files
2021-11-22 22:48:09 +01:00

32 lines
688 B
Java

package rip.tilly.bedwars.game.arena;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import rip.tilly.bedwars.utils.CustomLocation;
import java.util.ArrayList;
import java.util.List;
@Getter
@Setter
@AllArgsConstructor
@RequiredArgsConstructor
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;
private List<CustomLocation> generators = new ArrayList<>();
}