mirror of
https://github.com/foomo/sesamy-go.git
synced 2025-10-16 12:35:43 +00:00
13 lines
279 B
Go
13 lines
279 B
Go
package event
|
|
|
|
import (
|
|
"github.com/foomo/sesamy-go"
|
|
"github.com/foomo/sesamy-go/encoding/mpv2/params"
|
|
)
|
|
|
|
type LevelStart sesamy.Event[params.LevelStart]
|
|
|
|
func NewLevelStart(p params.LevelStart) LevelStart {
|
|
return LevelStart(sesamy.NewEvent(sesamy.EventNameLevelStart, p))
|
|
}
|