Updated email address, grumbel@gmx.de -> grumbel@gmail.com
[supertux.git] / CODINGSTYLE
index 6ce9c07..1dca62e 100644 (file)
@@ -1,6 +1,11 @@
 SuperTux Coding Standards
 =========================
 
+* start member variable name with "m_", global variables with "g_" and
+  static variables with "s_"
+
+* avoid spaces at the end of lines
+
 * proper separation between generic engine code and game specific code
   should be done whenever feasible
 
@@ -9,7 +14,7 @@ SuperTux Coding Standards
 
 * external libraries are not allowed in src/, they go to external/
 
-* do not use raw pointer and new/delete, use auto_ptr<> instead
+* do not use raw pointer and new/delete, use std::unique_ptr<> instead
 
 * properly separate data members and member functions, don't mix them
   in the same public/private/protected section