Files
realworld/internal/content/screen/street.go
T
mr.zero bbc3faf3d7
ci/woodpecker/push/ebitengine Pipeline was successful
tmp backgrounds
2026-08-29 22:30:22 +02:00

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