From 833a46544df2ed2a7afdba08ebfe02ed7741d86a Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Tue, 8 Nov 2022 22:48:20 +0300 Subject: net/svc messages --- packets/types.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'packets/types.go') diff --git a/packets/types.go b/packets/types.go index 2a4cf4b..9a1f667 100644 --- a/packets/types.go +++ b/packets/types.go @@ -1,6 +1,9 @@ package packets -import "github.com/pektezol/demoparser/packets/classes" +import ( + "github.com/pektezol/demoparser/packets/classes" + "github.com/pektezol/demoparser/packets/messages" +) type Header struct { DemoFileStamp string @@ -21,7 +24,7 @@ type SignOn struct { InSequence int32 OutSequence int32 Size int32 - Data []byte + Data []messages.Message } type Packet struct { @@ -29,7 +32,7 @@ type Packet struct { InSequence int32 OutSequence int32 Size int32 - Data []byte + Data []messages.Message } type SyncTick struct{} -- cgit v1.2.3