create new constructor for VmcExtRemote

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-08-17 09:41:11 -04:00
parent c1825dad14
commit 22e076dce6

View File

@ -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;
}
}
}