Arena system and some changes (not finished)
This commit is contained in:
30
src/main/java/rip/tilly/bedwars/game/arena/CopiedArena.java
Normal file
30
src/main/java/rip/tilly/bedwars/game/arena/CopiedArena.java
Normal file
@ -0,0 +1,30 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user