]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/multiplay.hxx
Fix bug 191, uninitialised HUD color.
[flightgear.git] / src / Network / multiplay.hxx
index db92b7580bf018738d87356132ff4adb175f68a5..f596ea0eb89552248264d018b15a2c3837dcf9f3 100644 (file)
@@ -40,7 +40,7 @@
 
 #include "protocol.hxx"
 
-SG_USING_STD(string);
+using std::string;
 
 
 /****************************************************************
@@ -78,7 +78,15 @@ public:
     */
     bool close();
 
+    void setPropertiesChanged()
+    {
+      mPropertiesChanged = true;
+    }
 private:
+  bool mPropertiesChanged;
+  
+  void findProperties();
+  
   // Map between the property id's from the multiplayers network packets
   // and the property nodes
   typedef std::map<unsigned, SGSharedPtr<SGPropertyNode> > PropertyMap;