From 82871ba1bac1d62f69e1933b66659e62d2e5e063 Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Tue, 12 Sep 2023 20:53:09 +0300 Subject: another rewrite, v1.0.0 --- packets/messages/types/SvcPaintmapData.go | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 packets/messages/types/SvcPaintmapData.go (limited to 'packets/messages/types/SvcPaintmapData.go') diff --git a/packets/messages/types/SvcPaintmapData.go b/packets/messages/types/SvcPaintmapData.go deleted file mode 100644 index f3bd1a3..0000000 --- a/packets/messages/types/SvcPaintmapData.go +++ /dev/null @@ -1,14 +0,0 @@ -package types - -import "github.com/pektezol/bitreader" - -type SvcPaintmapData struct { - Data []byte -} - -func ParseSvcPaintmapData(reader *bitreader.ReaderType) SvcPaintmapData { - length := reader.TryReadInt32() - return SvcPaintmapData{ - Data: reader.TryReadBytesToSlice(int(length / 8)), - } -} -- cgit v1.2.3