Example #1
0
        public override void Import(DCFG cfg)
        {
            LvlBorn data = cfg as LvlBorn;

            this.Camp  = data.Camp;
            this.Pos   = data.Pos;
            this.Euler = data.Euler;
        }
Example #2
0
        public override DCFG Export()
        {
            LvlBorn data = new LvlBorn();

            data.Camp  = this.Camp;
            data.Pos   = this.Pos;
            data.Euler = this.Euler;
            return(data);
        }