From 486af45d534f993f63e3549b58e6731f098bafa4 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 25 Nov 2023 22:45:10 -0600 Subject: [PATCH] Make SlipFrame constants public --- QControlKit/SharpOSC/SlipFrame.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/QControlKit/SharpOSC/SlipFrame.cs b/QControlKit/SharpOSC/SlipFrame.cs index 237987d..eb63d48 100644 --- a/QControlKit/SharpOSC/SlipFrame.cs +++ b/QControlKit/SharpOSC/SlipFrame.cs @@ -4,10 +4,10 @@ namespace SharpOSC { public static class SlipFrame { - static readonly byte END = 0xc0; - static readonly byte ESC = 0xdb; - static readonly byte ESC_END = 0xDC; - static readonly byte ESC_ESC = 0xDD; + public static readonly byte END = 0xc0; + public static readonly byte ESC = 0xdb; + public static readonly byte ESC_END = 0xDC; + public static readonly byte ESC_ESC = 0xDD; public static List Decode(byte[] data) {