]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Level/Hotspot.cpp
Applied clang-format on all files
[lugaru.git] / Source / Level / Hotspot.cpp
index f1b2ceddec74eb311a366504f5959c6ad37e5e55..9ea7e95bb531cb3b0344d3af21fd741a8db19dfe 100644 (file)
@@ -23,16 +23,16 @@ std::vector<Hotspot> Hotspot::hotspots;
 int Hotspot::current = 0;
 int Hotspot::killhotspot = 0;
 
-Hotspot::Hotspot() :
-    position(),
-    type(0),
-    size(0)
+Hotspot::Hotspot()
+    : position()
+    , type(0)
+    size(0)
 {
 }
 
-Hotspot::Hotspot(XYZ p, int t, float s) :
-    position(p),
-    type(t),
-    size(s)
+Hotspot::Hotspot(XYZ p, int t, float s)
+    : position(p)
+    , type(t)
+    size(s)
 {
 }