Gambling moved to a separate project. Project builds

This commit is contained in:
Kwoth
2023-03-18 18:36:04 +01:00
parent db2328cdaf
commit 09171fb10a
361 changed files with 532 additions and 476 deletions

View File

@@ -0,0 +1,20 @@
#nullable enable
using Cloneable;
using NadekoBot.Common.Yml;
namespace Nadeko.Medusa;
[Cloneable]
public sealed partial class MedusaConfig : ICloneable<MedusaConfig>
{
[Comment("""DO NOT CHANGE""")]
public int Version { get; set; } = 1;
[Comment("""List of medusae automatically loaded at startup""")]
public List<string>? Loaded { get; set; }
public MedusaConfig()
{
Loaded = new();
}
}