15 lines
237 B
Go
15 lines
237 B
Go
package inc
|
|
|
|
import (
|
|
inkwell "git.teletypegames.org/engines/inkwell"
|
|
)
|
|
|
|
func registerDialog(w *World) {
|
|
for _, d := range []inkwell.Dialogue{
|
|
dialogDexTalk(),
|
|
dialogMysteryTapeSilent(),
|
|
} {
|
|
w.G.DialogueManager.Register(d)
|
|
}
|
|
}
|