diff --git a/src/VRCOscLib/VRCOscLib/Chatbox/OscChatbox.cs b/src/VRCOscLib/VRCOscLib/Chatbox/OscChatbox.cs index 05db6e9..921885f 100644 --- a/src/VRCOscLib/VRCOscLib/Chatbox/OscChatbox.cs +++ b/src/VRCOscLib/VRCOscLib/Chatbox/OscChatbox.cs @@ -5,8 +5,9 @@ namespace BuildSoft.VRChat.Osc.Chatbox; public static class OscChatbox { - public static string InputAddress = "/chatbox/input"; - public static string TypingAddress = "/chatbox/typing"; + public static readonly string InputAddress = "/chatbox/input"; + public static readonly string TypingAddress = "/chatbox/typing"; + public static void SendMessage(string message, bool direct, bool complete = false) { OscClient client = OscUtility.Client;