diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2023-11-06 18:37:11 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2023-11-06 18:37:11 +0300 |
| commit | 2f8c92f261586f68a976efce0cfcdd0401f402e0 (patch) | |
| tree | 33189cc48987789dff4e7fba0a74d2b2326f0a04 /pkg/messages/types/svcSetView.go | |
| parent | convert cm ticks correctly (diff) | |
| download | sdp.go-2f8c92f261586f68a976efce0cfcdd0401f402e0.tar.gz sdp.go-2f8c92f261586f68a976efce0cfcdd0401f402e0.tar.bz2 sdp.go-2f8c92f261586f68a976efce0cfcdd0401f402e0.zip | |
dont try to understand it, feel itlp-parser
Diffstat (limited to 'pkg/messages/types/svcSetView.go')
| -rw-r--r-- | pkg/messages/types/svcSetView.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/pkg/messages/types/svcSetView.go b/pkg/messages/types/svcSetView.go deleted file mode 100644 index a60d547..0000000 --- a/pkg/messages/types/svcSetView.go +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | package messages | ||
| 2 | |||
| 3 | import ( | ||
| 4 | "github.com/pektezol/bitreader" | ||
| 5 | ) | ||
| 6 | |||
| 7 | type SvcSetView struct { | ||
| 8 | EntityIndex uint16 | ||
| 9 | } | ||
| 10 | |||
| 11 | func ParseSvcSetView(reader *bitreader.Reader) SvcSetView { | ||
| 12 | svcSetView := SvcSetView{ | ||
| 13 | EntityIndex: uint16(reader.TryReadBits(11)), | ||
| 14 | } | ||
| 15 | |||
| 16 | return svcSetView | ||
| 17 | } | ||