Files
inkwell/pncdsl/action.script.go
T
2026-05-25 18:09:51 +02:00

10 lines
180 B
Go

package pncdsl
type Script struct {
Name string
Actions Action
}
func (s Script) GetName() string { return s.Name }
func (s Script) TypeLabel() string { return "script" }