17 lines
571 B
Go
17 lines
571 B
Go
package screen
|
|
|
|
import "git.teletypegames.org/games/realworld/internal/names"
|
|
|
|
// publicBBS is one of the wiki's 💡 suggestions: the canon has BBS terminals
|
|
// standing in cafés, post offices and bus stops — live infrastructure, not
|
|
// relics. An alternative way to read the boards, in a place where somebody can
|
|
// read over your shoulder (wiki: entities#potenciális-további-helyszínek).
|
|
func publicBBS() screen {
|
|
return screen{
|
|
name: names.ScreenPublicBBS,
|
|
title: "PUBLIC BBS TERMINAL",
|
|
background: names.BgPublicBBS,
|
|
onSelector: true,
|
|
}
|
|
}
|