Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #82 from TheWylot/dev/v2.0.0
Browse files Browse the repository at this point in the history
DEV-2.0.22 // Release
  • Loading branch information
TheWylot authored Mar 14, 2023
2 parents 91f21d1 + b063142 commit 590430e
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>ir.wy</groupId>
<artifactId>WyCore</artifactId>
<packaging>jar</packaging>
<version>2.0.21</version>
<version>2.0.22</version>


<properties>
Expand Down
11 changes: 11 additions & 0 deletions src/main/java/ir/wy/wycore/proxy/utils/EmptyEntity.kt
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 src/main/java/ir/wy/wycore/proxy/utils/ProxyEntityController.kt
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>
}
5 changes: 5 additions & 0 deletions src/main/java/ir/wy/wycore/proxy/utils/ProxyMiniMessage.kt
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
}
2 changes: 2 additions & 0 deletions src/main/java/ir/wy/wycore/spigot/Versions.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import lombok.Getter;
import org.bukkit.Bukkit;


@Deprecated(since = "v2.0.10")
public final class Versions {

private static String serverVersion;
Expand Down

0 comments on commit 590430e

Please sign in to comment.