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

Add Garage block

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2019-11-10 15:28:16 +01:00
parent b54e02543b
commit a061da28b0
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

24
block_garage.go Normal file
View file

@ -0,0 +1,24 @@
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 }