Files
realworld/internal/content/asset/alley_background.go
T
2026-08-29 19:07:32 +02:00

17 lines
323 B
Go

package asset
import (
inkwell "git.teletypegames.org/engines/inkwell"
"realworld/internal/names"
)
// alleyBackground is the alley behind Noodle's house (beat 3).
func alleyBackground() inkwell.Asset {
return inkwell.Asset{
Name: names.AssetAlleyBG,
Path: "assets/bg/alley.png",
Kind: inkwell.AssetImage,
}
}