create new constructor for VmcExtSetRes

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-08-17 10:10:43 -04:00
parent 319a201ee0
commit b33324bd0a

View File

@ -39,5 +39,10 @@ namespace godotVmcSharp
} }
response = (string)m.Data[0].Value; response = (string)m.Data[0].Value;
} }
public VmcExtSetRes(string _response) : base(new godotOscSharp.Address("/VMC/Ext/Set/Res"))
{
response = _response;
}
} }
} }