Skip to content

Commit

Permalink
level
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladekabel0 committed Aug 2, 2022
1 parent 27be6a3 commit 1d50a2b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.angeschossen</groupId>
<artifactId>LandsAPI</artifactId>
<version>6.8.2</version>
<version>6.8.3</version>
<name>LandsAPI</name>

<repositories>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package me.angeschossen.lands.api.levels;

import me.angeschossen.lands.api.levels.requirement.CachedRequirement;
import org.bukkit.configuration.ConfigurationSection;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
Expand All @@ -11,6 +12,10 @@
public interface LevelsHandler {
@NotNull List<? extends Level> getLandLevels();

void registerCachedLandRequirement(CachedRequirement requirement);

void registerCachedNationRequirement(CachedRequirement requirement);

@NotNull List<? extends Level> getNationLevels();

@Nullable Map<Level, ConfigurationSection> getLandSection();
Expand Down

0 comments on commit 1d50a2b

Please sign in to comment.