blob: 040fb6aadb383440e681ddc53104e15eabb6f24c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package types
import "github.com/pektezol/bitreader"
type SvcSetPause struct {
Paused bool
}
func ParseSvcSetPause(reader *bitreader.ReaderType) SvcSetPause {
return SvcSetPause{Paused: reader.TryReadBool()}
}
|