This class parses the GUI objects from an XML file and return the actual Element Value based on the logical name provided
Example #1
0
 /// <summary>
 /// Gets the instance.
 /// </summary>
 /// <returns></returns>
 public static GuiMapParser GetInstance()
 {
     if (guiMapParser == null)
     {
         Logger.Debug("Creating new instance of GuiMapParser");
         guiMapParser = new GuiMapParser();
         return guiMapParser;
     }
     return guiMapParser;
 }