2026-04-22 11:13:16 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using SGModule.ConfigLoader;
|
|
|
|
|
|
2026-04-27 11:20:13 +08:00
|
|
|
namespace RedHotRoast
|
2026-04-22 11:13:16 +08:00
|
|
|
{
|
|
|
|
|
[ConfigKey("FreeImageLibrary")]
|
|
|
|
|
public class FreeImageLibrary
|
|
|
|
|
{
|
|
|
|
|
public int id;
|
|
|
|
|
public string Name;
|
|
|
|
|
public int State;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
[ConfigKey("ADImageLibrary")]
|
|
|
|
|
public class ADImageLibrary
|
|
|
|
|
{
|
|
|
|
|
public int id;
|
|
|
|
|
public string Name;
|
|
|
|
|
public int State;
|
|
|
|
|
public int GoldCoins;
|
|
|
|
|
}
|
|
|
|
|
[ConfigKey("SpecialImageLibrary")]
|
|
|
|
|
public class SpecialImageLibrary
|
|
|
|
|
{
|
|
|
|
|
public int id;
|
|
|
|
|
public string Name;
|
|
|
|
|
public int State;
|
|
|
|
|
public int GoldCoins;
|
|
|
|
|
}
|
|
|
|
|
[ConfigKey("VIPImageLibrary")]
|
|
|
|
|
public class VIPImageLibrary
|
|
|
|
|
{
|
|
|
|
|
public int id;
|
|
|
|
|
public string Name;
|
|
|
|
|
public int State;
|
|
|
|
|
public int GoldCoins;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|