fix:1、同步部分arrow game的ui资源和代码
This commit is contained in:
@@ -84,5 +84,12 @@ namespace RedHotRoast
|
||||
public int darkThoughProbability;
|
||||
public int Dailyrefreshtimes;
|
||||
|
||||
public int PiggyBankSwitch;
|
||||
public int ExpiryUnlock;
|
||||
public int BalanceExpired;
|
||||
|
||||
public int ExchangeModeToggle;
|
||||
public int ExchangeProcessMode;
|
||||
public int CHProcessMode;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
using SGModule.ConfigLoader;
|
||||
namespace IgnoreOPS
|
||||
{
|
||||
|
||||
[ConfigKey("ExchangeDescriptors")]
|
||||
public class ExchangeDes
|
||||
{
|
||||
public string des_key;
|
||||
public string Mode_0;
|
||||
public string Mode_1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ecb6b9a4c461459995d7acdb1fd1a1e8
|
||||
timeCreated: 1783650657
|
||||
@@ -1,10 +1,54 @@
|
||||
using SGModule.ConfigLoader;
|
||||
|
||||
namespace RedHotRoast {
|
||||
[ConfigKey("TurnOffRewards")]
|
||||
public class TurnOffRewards {
|
||||
public int Reward_Type;
|
||||
public float quantity;
|
||||
public int weight;
|
||||
}
|
||||
}
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Newtonsoft.Json;
|
||||
using SGModule.ConfigLoader;
|
||||
|
||||
namespace RedHotRoast {
|
||||
[ConfigKey("TurnOffRewards")]
|
||||
public class TurnOffRewards {
|
||||
public int Reward_Type;
|
||||
public float quantity;
|
||||
public int weight;
|
||||
}
|
||||
|
||||
[ConfigKey("exBrPool")]
|
||||
public class exBrPool
|
||||
{
|
||||
public int id;
|
||||
public string user_name;
|
||||
public string amount;
|
||||
}
|
||||
public class exBrPoolModel
|
||||
{
|
||||
public static List<string> config_name_list;
|
||||
public static List<string> config_money_list;
|
||||
}
|
||||
|
||||
[ConfigKey("exBrPool_2")]
|
||||
public class exBrPool_2
|
||||
{
|
||||
public int id;
|
||||
public string user_name;
|
||||
public string amount;
|
||||
}
|
||||
public class exBrPoolModel2
|
||||
{
|
||||
public static List<string> config_name_list;
|
||||
public static List<string> config_money_list;
|
||||
}
|
||||
|
||||
[ConfigKey("LevelAttempts")]
|
||||
public class LevelAttempts
|
||||
{
|
||||
public int id;
|
||||
public string user_name;
|
||||
public string amount;
|
||||
}
|
||||
public class LevelAttemptsModel
|
||||
{
|
||||
public static List<string> config_name_list;
|
||||
public static List<string> config_money_list;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user