21 lines
366 B
Go
21 lines
366 B
Go
package inc
|
|
|
|
import (
|
|
inkwell "git.teletypegames.org/engines/inkwell"
|
|
)
|
|
|
|
func init() {
|
|
SceneManager.Register(Scene{
|
|
Name: ScenePaulShop,
|
|
Title: "PAUL'S SHOP — JUNK AND GARAGE",
|
|
Background: BgPaulShop,
|
|
Exits: []inkwell.Exit{
|
|
{
|
|
To: SceneNoodleHouse,
|
|
Label: "the bus to San Francisco",
|
|
Side: inkwell.ExitNear,
|
|
},
|
|
},
|
|
})
|
|
}
|