embed plugin loader directly into the launcher
This commit is contained in:
24
PluginLoader/Profile.cs
Normal file
24
PluginLoader/Profile.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
namespace PluginLoader;
|
||||
|
||||
public class Profile
|
||||
{
|
||||
public Profile()
|
||||
{
|
||||
}
|
||||
|
||||
public Profile(string name, string[] plugins)
|
||||
{
|
||||
Key = Guid.NewGuid().ToString();
|
||||
Name = name;
|
||||
Plugins = plugins;
|
||||
}
|
||||
|
||||
// Unique key of the profile
|
||||
public string Key { get; set; }
|
||||
|
||||
// Name of the profile
|
||||
public string Name { get; set; }
|
||||
|
||||
// Plugin IDs
|
||||
public string[] Plugins { get; set; }
|
||||
}
|
Reference in New Issue
Block a user