diff options
Diffstat (limited to 'packets/messages/types/SvcSetPause.go')
| -rw-r--r-- | packets/messages/types/SvcSetPause.go | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/packets/messages/types/SvcSetPause.go b/packets/messages/types/SvcSetPause.go deleted file mode 100644 index c71485c..0000000 --- a/packets/messages/types/SvcSetPause.go +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | package types | ||
| 2 | |||
| 3 | import ( | ||
| 4 | "github.com/pektezol/bitreader" | ||
| 5 | ) | ||
| 6 | |||
| 7 | type SvcSetPause struct { | ||
| 8 | Paused bool | ||
| 9 | } | ||
| 10 | |||
| 11 | func ParseSvcSetPause(reader *bitreader.ReaderType) SvcSetPause { | ||
| 12 | return SvcSetPause{Paused: reader.TryReadBool()} | ||
| 13 | } | ||