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

import "github.com/pektezol/bitreader"

type SvcSetPause struct {
	Paused bool
}

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