You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
511 B
23 lines
511 B
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"git.aiterp.net/lucifer3/server/internal/formattools"
|
|
)
|
|
|
|
type ReplaceScene struct {
|
|
IDs []string `json:"ids"`
|
|
SceneID int64 `json:"sceneId"`
|
|
}
|
|
|
|
func (c ReplaceScene) CommandDescription() string {
|
|
return fmt.Sprintf("ReplaceScene(%v, %d)", formattools.CompactIDList(c.IDs), c.SceneID)
|
|
}
|
|
|
|
type ClearScene struct {
|
|
IDs []string `json:"ids"`
|
|
}
|
|
|
|
func (c ClearScene) CommandDescription() string {
|
|
return fmt.Sprintf("ClearScene(%v)", formattools.CompactIDList(c.IDs))
|
|
}
|