15 lines
267 B
Go
15 lines
267 B
Go
package background
|
|
|
|
import (
|
|
inkwell "git.teletypegames.org/engines/inkwell"
|
|
"git.teletypegames.org/games/realworld/inc"
|
|
)
|
|
|
|
func init() {
|
|
Manager.Register(Background{
|
|
Name: inc.BgServerFarm,
|
|
Path: "assets/bg/server_farm.png",
|
|
Kind: inkwell.AssetImage,
|
|
})
|
|
}
|