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

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

type SvcSetPause struct {
	Paused bool
}

func ParseSvcSetPause(reader *bitreader.Reader) SvcSetPause {
	svcSetPause := SvcSetPause{
		Paused: reader.TryReadBool(),
	}

	return svcSetPause
}