MrGravity.Import_Code.EntityInfo.EntityInfo C# (CSharp) Méthode

EntityInfo() private méthode

private EntityInfo ( string name, Vector2 startLocation ) : System.Collections.Generic
name string
startLocation Microsoft.Xna.Framework.Vector2
Résultat System.Collections.Generic
        private EntityInfo(string name, Vector2 startLocation)
        {
            MId = -1;

            MName = name;
            MType = "";
            MCollisionType = "Normal";
            MTextureFile = name;
            MLocation = startLocation;
            MProperties = new Dictionary<string, string>();
        }

Same methods

EntityInfo::EntityInfo ( System.Xml.Linq.XElement entity ) : System.Collections.Generic