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.

12 lines
206 B

2 years ago
  1. package lucifer3
  2. import (
  3. "git.aiterp.net/lucifer3/server/device"
  4. "time"
  5. )
  6. type Effect interface {
  7. State(index, round, random int) device.State
  8. Frequency() time.Duration
  9. EffectDescription() string
  10. }