Files
realworld/inc/widget/widget.inventory_bar.go
T
mr.zero c5c0c02c03
ci/woodpecker/push/ebitengine Pipeline was successful
dirs
2026-08-30 23:21:06 +02:00

21 lines
308 B
Go

package widget
import (
inkwell "git.teletypegames.org/engines/inkwell"
)
func init() {
Manager.Register(&inkwell.InventoryBar{
Name: "inventory",
When: whenPlaying,
Origin: inkwell.Point{
X: Pad + 2,
Y: invY,
},
Slots: 8,
Cols: 4,
SlotSize: invSlot,
Gap: invGap,
})
}