1
0
Fork 0
mirror of https://github.com/Luzifer/sii.git synced 2024-10-18 05:14:19 +00:00
sii/block_garage.go

25 lines
506 B
Go
Raw Normal View History

package sii
func init() {
RegisterBlock(&Garage{})
}
type Garage struct {
Vehicles []Ptr `sii:"vehicles"`
Drivers []Ptr `sii:"drivers"`
Trailers []Ptr `sii:"trailers"`
Status int `sii:"status"`
ProfitLog Ptr `sii:"profit_log"`
Productivity float32 `sii:"productivity"`
blockName string
}
func (Garage) Class() string { return "garage" }
func (g *Garage) Init(class, name string) {
g.blockName = name
}
func (g Garage) Name() string { return g.blockName }