-
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
1 parent
f598ff2
commit babe76d
Showing
7 changed files
with
115 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
[*.{js,py}] | ||
charset = utf-8 | ||
|
||
# 4 space indentation | ||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# Tab indentation (no size specified) | ||
[Makefile] | ||
indent_style = tab | ||
|
||
# Indentation override for all JS under lib directory | ||
[lib/**.js] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Matches the exact files either package.json or .travis.yml | ||
[{package.json,.travis.yml}] | ||
indent_style = space | ||
indent_size = 2 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
14 changes: 14 additions & 0 deletions
14
plugin/src/main/java/kor/toxicity/questadder/manager/ShopManager.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,14 @@ | ||
package kor.toxicity.questadder.manager | ||
|
||
import kor.toxicity.questadder.QuestAdderBukkit | ||
|
||
object ShopManager: QuestAdderManager { | ||
override fun start(adder: QuestAdderBukkit) { | ||
} | ||
|
||
override fun reload(adder: QuestAdderBukkit) { | ||
} | ||
|
||
override fun end(adder: QuestAdderBukkit) { | ||
} | ||
} |
20 changes: 10 additions & 10 deletions
20
plugin/src/main/java/kor/toxicity/questadder/nms/NMSVersion.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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
package kor.toxicity.questadder.nms | ||
|
||
enum class NMSVersion(val version: Int, val subVersion: Int) { | ||
V1_17_R1(17,1), | ||
V1_18_R1(18,1), | ||
V1_18_R2(18,2), | ||
V1_19_R1(19,1), | ||
V1_19_R2(19,2), | ||
V1_19_R3(19,3), | ||
V1_20_R1(20,1), | ||
V1_20_R2(20,2) | ||
} | ||
enum class NMSVersion(val version: Int, val subVersion: Int, val mcmetaVersion: Int) { | ||
V1_17_R1(17,1, 7), | ||
V1_18_R1(18,1, 8), | ||
V1_18_R2(18,2, 8), | ||
V1_19_R1(19,1, 9), | ||
V1_19_R2(19,2, 12), | ||
V1_19_R3(19,3, 13), | ||
V1_20_R1(20,1, 15), | ||
V1_20_R2(20,2, 18) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.