public void Construct(CreateSpeMonsterNotifier _this, MonsterConfig config, eSpeMonsterType type)
 {
     _this.TableIds = _this.Config.Records.Select(r => r.Id).ToList();
 }
 public CreateSpeMonsterNotifier(MonsterConfig config, eSpeMonsterType type)
     : base(config, type)
 {
     mImpl.Construct(this, config, type);
 }
示例#3
0
 public CreateSpeMonsterBase(MonsterConfig config, eSpeMonsterType type)
 {
     Config = config;
     Type   = type;
 }