This repository has been archived by the owner on Jan 24, 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.
Remove old kit classes and add BaseKit class for CherrySkyPVP
Deleted the old kit classes including Jumper, KitCommand, KitManager and KitsSystem. Introduced a new class, BaseKit. Also, removed the registrations related to the deleted classes in the Loader class.
- Loading branch information
1 parent
1e507bd
commit 6cbc99a
Showing
7 changed files
with
31 additions
and
170 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package net.cherrycraft.cherryskypvp.kits; | ||
|
||
public class BaseKit { | ||
|
||
|
||
} |
38 changes: 0 additions & 38 deletions
38
src/main/java/net/cherrycraft/cherryskypvp/kits/KitCommand.java
This file was deleted.
Oops, something went wrong.
64 changes: 0 additions & 64 deletions
64
src/main/java/net/cherrycraft/cherryskypvp/kits/list/Jumper.java
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
src/main/java/net/cherrycraft/cherryskypvp/kits/system/KitManager.java
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
src/main/java/net/cherrycraft/cherryskypvp/kits/system/KitsSystem.java
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
src/main/java/net/cherrycraft/cherryskypvp/kits/systems/Kit.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,18 @@ | ||
package net.cherrycraft.cherryskypvp.kits.systems; | ||
|
||
import java.util.List; | ||
|
||
public abstract class Kit { | ||
private final String name; | ||
private final String description; | ||
|
||
public Kit(String name, String description) { | ||
this.name = name; | ||
this.description = description; | ||
} | ||
|
||
List<String> getItems() { | ||
|
||
return null; | ||
} | ||
} |