diff --git a/VmcMessages/VmcExtVrm.cs b/VmcMessages/VmcExtVrm.cs index 850c59f..ee24e09 100644 --- a/VmcMessages/VmcExtVrm.cs +++ b/VmcMessages/VmcExtVrm.cs @@ -68,5 +68,18 @@ namespace godotVmcSharp return; } } + + public VmcExtVrm(string _path, string _title) : base(new godotOscSharp.Address("/VMC/Ext/VRM")) + { + path = _path; + title = _title; + } + + public VmcExtVrm(string _path, string _title, string _hash) : base(new godotOscSharp.Address("/VMC/Ext/VRM")) + { + path = _path; + title = _title; + hash = _hash; + } } } \ No newline at end of file