create new constructor for VmcExtSetShortcut

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-08-17 10:13:36 -04:00
parent a72f184f00
commit df32d6ab1f

View File

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