airobot/lib/action.go
2022-12-12 14:09:21 +08:00

18 lines
194 B
Go

package lib
type IAction interface {
Info() SceneInfo
}
type Action struct {
// scene *scene
Id string
Name string
Desc string
}
func NewAction() *Action {
a := &Action{}
return a
}