mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-14 17:07:28 +08:00
[RF] Move sub-config classes to their own directory
This commit is contained in:
21
AquaMai/Cheat/Config.cs
Normal file
21
AquaMai/Cheat/Config.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user