Files
realworld/inc/dialog.manager.go
T
2026-08-29 23:27:15 +02:00

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)
}
}