Ejemplo n.º 1
0
        public static PropertyObject Load(string fileLocation)
        {
            FileReader fr = new FileReader("Content\\" + fileLocation);

            fr.readLine();
            PropertyObject toGlobal = new PropertyObject();

            toGlobal.Load(fr);
            fr.Finish();
            return(toGlobal);
        }
Ejemplo n.º 2
0
        public static void Load(string fileLocation, string nameInGlobal)
        {
            FileReader fr = new FileReader("Content\\" + fileLocation);

            fr.readLine();
            PropertyObject toGlobal = new PropertyObject();

            toGlobal.Load(fr);
            Global.Add(new PropertyDefinition(nameInGlobal, toGlobal));
            fr.Finish();
        }
Ejemplo n.º 3
0
 public static void Load(string fileLocation, string nameInGlobal)
 {
     PropertyObject.Load(fileLocation, nameInGlobal);
 }
Ejemplo n.º 4
0
 public static PropertyObject Load(string fileLocation)
 {
     return(PropertyObject.Load(fileLocation));
 }