20 lines
622 B
Go
20 lines
622 B
Go
package screen
|
|
|
|
import "git.teletypegames.org/games/realworld/internal/names"
|
|
|
|
// street is the city itself: pavements, a square, a metro entrance, and the
|
|
// environmental decay that tracks The AI's spread — glitching systems, odd
|
|
// news, infrastructure that slips (wiki: entities#helyszinek).
|
|
//
|
|
// The wiki's own street front is the one with the hotdog stand and Sumphor on
|
|
// it (story#norman-lakása); that is a beat for this screen, not a screen of its
|
|
// own.
|
|
func street() screen {
|
|
return screen{
|
|
name: names.ScreenStreet,
|
|
title: "STREET",
|
|
background: names.BgStreet,
|
|
onSelector: true,
|
|
}
|
|
}
|