// overloaded constructor takes a list and makes it the list for this menu public Menu(ref ServerList list) { m_list = list; }
// constructors // default constructor makes a fresh list and tries to deserialize it public Menu() { m_list = new ServerList(); m_list.deSerialize(); }