public override void CopyFrom(TactileDataContent other) { CheckSameClass(other); var config = (ConfigData)other; Actor = new ActorConfig(config.Actor); BattleScene = new BattleSceneConfig(config.BattleScene); Bgm = new BgmConfig(config.Bgm); }
public BattleSceneConfig(BattleSceneConfig config) { CopyFrom(config); }
private void Decrypt(BinaryReader input) { Actor = ActorConfig.ReadContent(input); BattleScene = BattleSceneConfig.ReadContent(input); Bgm = BgmConfig.ReadContent(input); }