mpp-client-go/mpp/channel.go

20 lines
429 B
Go
Raw Normal View History

2024-04-20 11:27:00 +02:00
package mpp
2024-07-09 04:04:01 +02:00
type Channel struct {
Id string `json:"_id"`
Id2 string `json:"id"`
Crown Crown `json:"crown"`
Settings ChannelSettings `json:"settings"`
2024-04-20 11:27:00 +02:00
}
2024-07-09 04:04:01 +02:00
type Crown struct {
2024-04-20 11:27:00 +02:00
ParticipantId string `json:"participantId"`
UserId string `json:"userId"`
StartPos Vector2 `json:"startPos"`
EndPos Vector2 `json:"endPos"`
}
2024-07-09 04:04:01 +02:00
type ChannelSettings struct {
2024-04-20 11:27:00 +02:00
// TODO
}