mirror of
https://github.com/Luzifer/sii.git
synced 2024-12-21 00:21:15 +00:00
23 lines
519 B
Go
23 lines
519 B
Go
|
package sii
|
||
|
|
||
|
func init() {
|
||
|
RegisterBlock(&VehicleWheelAccessory{})
|
||
|
}
|
||
|
|
||
|
type VehicleWheelAccessory struct {
|
||
|
Offset int64 `sii:"offset"`
|
||
|
PaintColor [3]float32 `sii:"paint_color"`
|
||
|
Wear float32 `sii:"wear"`
|
||
|
DataPath string `sii:"data_path"`
|
||
|
|
||
|
blockName string
|
||
|
}
|
||
|
|
||
|
func (VehicleWheelAccessory) Class() string { return "vehicle_wheel_accessory" }
|
||
|
|
||
|
func (v *VehicleWheelAccessory) Init(class, name string) {
|
||
|
v.blockName = name
|
||
|
}
|
||
|
|
||
|
func (v VehicleWheelAccessory) Name() string { return v.blockName }
|