generated from flytegg/mcw-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
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
2 changed files
with
76 additions
and
31 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
27 changes: 27 additions & 0 deletions
27
src/main/kotlin/gg/flyte/event/game/main/type/PassTheParcelGame.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,27 @@ | ||
package gg.flyte.event.game.main.type | ||
|
||
import gg.flyte.event.game.GameType | ||
import gg.flyte.event.game.main.MainGame | ||
import org.bukkit.entity.Player | ||
|
||
class PassTheParcelGame : MainGame(GameType.PASS_THE_PARCEL) { | ||
override fun onPlayerJoin(player: Player) { | ||
TODO("Not yet implemented") | ||
} | ||
|
||
override fun events() { | ||
TODO("Not yet implemented") | ||
} | ||
|
||
override fun start() { | ||
TODO("Not yet implemented") | ||
} | ||
|
||
override fun stop() { | ||
TODO("Not yet implemented") | ||
} | ||
|
||
override fun onPlayerQuit(player: Player) { | ||
TODO("Not yet implemented") | ||
} | ||
} |