Esempio n. 1
0
        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);
        }
Esempio n. 2
0
 public ActorConfig(ActorConfig config)
 {
     CopyFrom(config);
 }
Esempio n. 3
0
 private void Decrypt(BinaryReader input)
 {
     Actor       = ActorConfig.ReadContent(input);
     BattleScene = BattleSceneConfig.ReadContent(input);
     Bgm         = BgmConfig.ReadContent(input);
 }