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()} }