airobot/lib/action.go
2022-12-12 11:20:37 +08:00

17 lines
181 B
Go

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