Consolidate metadata properties into one record

This commit is contained in:
Yoshi Askharoun
2024-05-21 20:14:57 -05:00
parent 249681c7bd
commit d357711b91
9 changed files with 48 additions and 62 deletions
+3 -5
View File
@@ -11,13 +11,11 @@ namespace ZuneModCore.Mods;
public class BackgroundImageMod : Mod
{
public override string Id => nameof(BackgroundImageMod);
private const string Description = "Replaces the \"Zero\" background with an image of your choice.";
public override string Title => "Background Image";
private const string Author = "Joshua \"Yoshi\" Askharoun";
public override string Description => "Replaces the \"Zero\" background with an image of your choice.";
public override string Author => "Joshua \"Yoshi\" Askharoun";
public override ModMetadata Metadata => new(nameof(BackgroundImageMod), "Background Image", Description, Author);
public override AbstractUICollection? GetDefaultOptionsUI()
{