summaryrefslogtreecommitdiff
path: root/packets/parameter_change_packet.gd
diff options
context:
space:
mode:
Diffstat (limited to 'packets/parameter_change_packet.gd')
-rw-r--r--packets/parameter_change_packet.gd24
1 files changed, 0 insertions, 24 deletions
diff --git a/packets/parameter_change_packet.gd b/packets/parameter_change_packet.gd
deleted file mode 100644
index 138b4f5..0000000
--- a/packets/parameter_change_packet.gd
+++ /dev/null
@@ -1,24 +0,0 @@
-class_name ParameterChangePacket
-extends Packet
-
-
-const HEADER := 0x00b0
-const BYTE_LENGTH := 8
-
-
-## Byte Type: u16
-## Byte Length: 2
-var parameter_id: int
-
-## Byte Type: i32
-## Byte Length: 4
-var count: int
-
-
-static func from_bytes(bytes: PackedByteArray):
- var packet = ParameterChangePacket.new()
-
- packet.parameter_id = bytes.decode_u16(2)
- packet.count = bytes.decode_s32(4)
-
- return packet