This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from TheWylot/dev/v2.0.0
DEV-2.0.22 // Release
- Loading branch information
Showing
5 changed files
with
29 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package ir.wy.wycore.proxy.utils | ||
|
||
import org.bukkit.Location; | ||
import org.bukkit.entity.Entity; | ||
|
||
interface EmptyEntity { | ||
fun createEmptyEntity( | ||
location: Location | ||
): Entity | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/ir/wy/wycore/proxy/utils/ProxyEntityController.kt
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,10 @@ | ||
package ir.wy.wycore.proxy.utils | ||
|
||
import ir.wy.wycore.behind.entity.ai.EntityController | ||
import org.bukkit.entity.Mob | ||
|
||
interface ProxyEntityController { | ||
fun <T: Mob> createEntityController( | ||
entity: T | ||
): EntityController<T> | ||
} |
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,5 @@ | ||
package ir.wy.wycore.proxy.utils | ||
|
||
interface ProxyMiniMessage { | ||
fun format(message: String): String | ||
} |
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