Ejemplo n.º 1
0
        public override void Import(DCFG cfg)
        {
            LvlPath data = cfg as LvlPath;

            this.Id        = data.Id;
            this.Type      = data.Type;
            this.PathNodes = data.PathNodes;
        }
Ejemplo n.º 2
0
        public override DCFG Export()
        {
            LvlPath data = new LvlPath();

            data.Id        = this.Id;
            data.Type      = this.Type;
            data.PathNodes = this.PathNodes;
            return(data);
        }