]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Level/Hotspot.cpp
Update copyright year to 2017
[lugaru.git] / Source / Level / Hotspot.cpp
index f1b2ceddec74eb311a366504f5959c6ad37e5e55..120aacfb6deaa7d1f8c91dfca5521bd8f56019c6 100644 (file)
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file)
+Copyright (C) 2010-2017 - Lugaru contributors (see AUTHORS file)
 
 This file is part of Lugaru.
 
@@ -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)
 {
 }