public Ogre(Game1 game, XmlTextReader reader)
        {
            string pxStr = reader.GetAttribute("px");
            string pyStr = reader.GetAttribute("py");
            string offsetStr = reader.GetAttribute("offset");

            float px = float.Parse(pxStr);
            float py = float.Parse(pyStr);
            float offset = float.Parse(offsetStr);

            Vector2 position = new Vector2(px, py);

            ogreBase = new OgreBase(game, position);
            ogreCore = new OgreCore(game, position, offset);
        }
示例#2
0
        public Ogre(Game1 game, XmlTextReader reader)
        {
            string pxStr     = reader.GetAttribute("px");
            string pyStr     = reader.GetAttribute("py");
            string offsetStr = reader.GetAttribute("offset");

            float px     = float.Parse(pxStr);
            float py     = float.Parse(pyStr);
            float offset = float.Parse(offsetStr);

            Vector2 position = new Vector2(px, py);

            ogreBase = new OgreBase(game, position);
            ogreCore = new OgreCore(game, position, offset);
        }