fix:1、添加项目。2、基本箭头生成
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
using SGModule.ConfigLoader;
|
||||
|
||||
namespace IgnoreOPS
|
||||
{
|
||||
public class RankHourRewardsModel : ConfigModel<RankHourRewardsModel, RankRewards>
|
||||
{
|
||||
public RankHourRewardsModel(string key) : base(key)
|
||||
{
|
||||
}
|
||||
}
|
||||
public class RankDayRewardsModel : ConfigModel<RankDayRewardsModel, RankRewards>
|
||||
{
|
||||
public RankDayRewardsModel(string key) : base(key)
|
||||
{
|
||||
}
|
||||
}
|
||||
public class RankWeekRewardsModel : ConfigModel<RankWeekRewardsModel, RankRewards>
|
||||
{
|
||||
public RankWeekRewardsModel(string key) : base(key)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public class RankRewards
|
||||
{
|
||||
public int id;
|
||||
public int rank;
|
||||
public int award;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user