X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FLevel%2FHotspot.cpp;h=9ea7e95bb531cb3b0344d3af21fd741a8db19dfe;hb=a15391fb6e514e033a50c714ef32968d21419f19;hp=1f7956e707b022c6dbc733d9a70889d6798c4d65;hpb=b84825978803615f45a9f128232e62431042aec0;p=lugaru.git diff --git a/Source/Level/Hotspot.cpp b/Source/Level/Hotspot.cpp index 1f7956e..9ea7e95 100644 --- a/Source/Level/Hotspot.cpp +++ b/Source/Level/Hotspot.cpp @@ -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) { }