From b236dd964f931664e24e56ada7cc77d0d43efd3d Mon Sep 17 00:00:00 2001 From: Cassandra de la Cruz-Munoz Date: Thu, 17 Aug 2023 10:30:13 -0400 Subject: [PATCH] create new constructors for VmcExtVrm --- VmcMessages/VmcExtVrm.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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