forked from OneLiteFeatherNET/BetterGoPaint
-
Notifications
You must be signed in to change notification settings - Fork 1
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
129 additions
and
130 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
api/src/main/java/net/thenextlvl/gopaint/api/model/GoPaintProvider.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package net.thenextlvl.gopaint.api.model; | ||
|
||
import core.i18n.file.ComponentBundle; | ||
import net.thenextlvl.gopaint.api.brush.BrushController; | ||
import net.thenextlvl.gopaint.api.brush.BrushRegistry; | ||
import org.bukkit.plugin.Plugin; | ||
|
||
public interface GoPaintProvider extends Plugin { | ||
String USE_PERMISSION = "gopaint.use"; | ||
String ADMIN_PERMISSION = "gopaint.admin"; | ||
String WORLD_BYPASS_PERMISSION = "gopaint.world.bypass"; | ||
|
||
ComponentBundle bundle(); | ||
|
||
BrushRegistry brushRegistry(); | ||
|
||
BrushController brushController(); | ||
|
||
PluginConfig config(); | ||
} |
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
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
Oops, something went wrong.