create new cconstructor for VmcExtSetConfig

This commit is contained in:
Cassandra de la Cruz-Munoz 2023-08-17 09:57:38 -04:00
parent c40c684807
commit 4d738ff511

View File

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