Exemplo n.º 1
0
		public static SMobPointEx FromPoint( SMobPoint Point ) {
			SMobPointEx p = new SMobPointEx();
			p.Anzahl = Point.Anzahl;
			p.Element = Point.Element;
			p.ID = Point.ID;
			p.InfoDesc = Point.InfoDesc;
			p.IsBoss = Point.IsBoss;
			p.Level = Point.Level;
			p.Marked = Point.Marked;
			p.Name = Point.Name;
			p.X = Point.X;
			p.Y = Point.Y;

			return p;
		}
Exemplo n.º 2
0
        public static SMobPointEx FromPoint(SMobPoint Point)
        {
            SMobPointEx p = new SMobPointEx();

            p.Anzahl   = Point.Anzahl;
            p.Element  = Point.Element;
            p.ID       = Point.ID;
            p.InfoDesc = Point.InfoDesc;
            p.IsBoss   = Point.IsBoss;
            p.Level    = Point.Level;
            p.Marked   = Point.Marked;
            p.Name     = Point.Name;
            p.X        = Point.X;
            p.Y        = Point.Y;

            return(p);
        }