add new constructor for VmcExtOpt

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-08-17 09:29:44 -04:00
parent 75a85c2119
commit eb0e4b8cef

View File

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