blob: d979ac5b195be86aeec1f6d5f904d06bbee47770 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package messages
import (
"github.com/pektezol/bitreader"
"github.com/pektezol/demoparser/pkg/writer"
)
type SvcSetPause struct {
Paused bool
}
func ParseSvcSetPause(reader *bitreader.Reader) SvcSetPause {
svcSetPause := SvcSetPause{
Paused: reader.TryReadBool(),
}
writer.TempAppendLine("\t\tPaused: %t", svcSetPause.Paused)
return svcSetPause
}
|