From eb0e4b8cef6c5cda94336257b4d47a35ddf484ea Mon Sep 17 00:00:00 2001 From: Cassandra de la Cruz-Munoz Date: Thu, 17 Aug 2023 09:29:44 -0400 Subject: [PATCH] add new constructor for VmcExtOpt --- VmcMessages/VmcExtOpt.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/VmcMessages/VmcExtOpt.cs b/VmcMessages/VmcExtOpt.cs index 45cd107..6b804d9 100644 --- a/VmcMessages/VmcExtOpt.cs +++ b/VmcMessages/VmcExtOpt.cs @@ -39,5 +39,10 @@ namespace godotVmcSharp } option = (string)m.Data[0].Value; } + + public VmcExtOpt(string _option) : base(new godotOscSharp.Address("/VMC/Ext/Opt")) + { + option = _option; + } } } \ No newline at end of file