[RF] Move sub-config classes to their own directory

This commit is contained in:
Clansty
2024-10-28 05:56:54 +08:00
parent 0af137ba8c
commit 6945032077
11 changed files with 693 additions and 667 deletions

21
AquaMai/Cheat/Config.cs Normal file
View File

@@ -0,0 +1,21 @@
using AquaMai.Attributes;
namespace AquaMai.Cheat;
public class Config
{
[ConfigComment(
en: "Unlock normally event-only tickets",
zh: "解锁游戏里所有可能的跑图券")]
public bool TicketUnlock { get; set; }
[ConfigComment(
en: "Unlock maps that are not in this version",
zh: "解锁游戏里所有的区域,包括非当前版本的(并不会帮你跑完)")]
public bool MapUnlock { get; set; }
[ConfigComment(
en: "Unlock Utage without the need of DXRating 10000",
zh: "不需要万分也可以进宴会场")]
public bool UnlockUtage { get; set; }
}