Created
June 13, 2018 01:41
-
-
Save Jire/4385ac1b8d9b653dcfbfcdb71c7ebc3f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| package ps.eden.server.game.content.dialogue | |
| /** | |
| * @author Jire | |
| */ | |
| open class Stage(val id: Int) { | |
| lateinit var next: () -> Int | |
| var interfaceID: Int = -1 | |
| var buttonID: Int = -1 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment