-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
92 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
bukkit/src/main/java/dev/aurelium/auraskills/bukkit/api/ApiAuraSkillsBukkit.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
package dev.aurelium.auraskills.bukkit.api; | ||
|
||
import dev.aurelium.auraskills.api.AuraSkillsBukkit; | ||
import dev.aurelium.auraskills.api.item.ItemManager; | ||
import dev.aurelium.auraskills.api.region.Regions; | ||
import dev.aurelium.auraskills.bukkit.AuraSkills; | ||
import dev.aurelium.auraskills.bukkit.api.implementation.ApiRegions; | ||
|
||
public class ApiAuraSkillsBukkit implements AuraSkillsBukkit { | ||
|
||
private final ApiRegions blockTracker; | ||
private final ItemManager itemManager; | ||
|
||
public ApiAuraSkillsBukkit(AuraSkills plugin) { | ||
this.blockTracker = new ApiRegions(plugin); | ||
this.itemManager = plugin.getItemManager(); | ||
} | ||
|
||
@Override | ||
public Regions getRegions() { | ||
return blockTracker; | ||
} | ||
|
||
@Override | ||
public ItemManager getItemManager() { | ||
return itemManager; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters