embed plugin loader directly into the launcher

This commit is contained in:
zznty
2022-10-29 01:50:14 +07:00
parent 7204815c0c
commit 66d3dc2ead
53 changed files with 5689 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
namespace PluginLoader.Stats.Model;
// Statistics for all plugins
public class PluginStats
{
// Key: pluginId
public Dictionary<string, PluginStat> Stats { get; set; } = new();
// Token the player is required to present for voting (making it harder to spoof votes)
public string VotingToken { get; set; }
}