aboutsummaryrefslogtreecommitdiff
path: root/packets/messages/types/SvcSetPause.go
blob: c71485c8a65cb6ac884691b92bad7e03992c0e48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package types

import (
	"github.com/pektezol/bitreader"
)

type SvcSetPause struct {
	Paused bool
}

func ParseSvcSetPause(reader *bitreader.ReaderType) SvcSetPause {
	return SvcSetPause{Paused: reader.TryReadBool()}
}