From 22e076dce6b0fa644ea5a2aa3329fd7401674775 Mon Sep 17 00:00:00 2001 From: Cassandra de la Cruz-Munoz Date: Thu, 17 Aug 2023 09:41:11 -0400 Subject: [PATCH] create new constructor for VmcExtRemote --- VmcMessages/VmcExtRemote.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/VmcMessages/VmcExtRemote.cs b/VmcMessages/VmcExtRemote.cs index f50918f..131a9ad 100644 --- a/VmcMessages/VmcExtRemote.cs +++ b/VmcMessages/VmcExtRemote.cs @@ -46,5 +46,11 @@ namespace godotVmcSharp service = (string)m.Data[0].Value; json = (string)m.Data[1].Value; } + + public VmcExtRemote(string _service, string _json) : base(new godotOscSharp.Address("/VMC/Ext/Remote")) + { + service = _service; + json = _json; + } } } \ No newline at end of file