X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FLevel%2FHotspot.cpp;h=120aacfb6deaa7d1f8c91dfca5521bd8f56019c6;hb=0aab437dc560d2afa982e61cc2547756ad7b0761;hp=1f7956e707b022c6dbc733d9a70889d6798c4d65;hpb=b84825978803615f45a9f128232e62431042aec0;p=lugaru.git diff --git a/Source/Level/Hotspot.cpp b/Source/Level/Hotspot.cpp index 1f7956e..120aacf 100644 --- a/Source/Level/Hotspot.cpp +++ b/Source/Level/Hotspot.cpp @@ -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. @@ -17,22 +17,22 @@ You should have received a copy of the GNU General Public License along with Lugaru. If not, see . */ -#include "Level/Hotspot.h" +#include "Level/Hotspot.hpp" std::vector 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) { }