17 lines
323 B
Go
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,
|
|
}
|
|
}
|