X-Git-Url: https://git.jsancho.org/?p=lugaru.git;a=blobdiff_plain;f=Source%2FLevel%2FHotspot.cpp;h=9ea7e95bb531cb3b0344d3af21fd741a8db19dfe;hp=f1b2ceddec74eb311a366504f5959c6ad37e5e55;hb=8b6e8f3ad7390309795eb35c0959264cb7924402;hpb=531fd8d27258d6c15d6fd221272c74b48602a85a diff --git a/Source/Level/Hotspot.cpp b/Source/Level/Hotspot.cpp index f1b2ced..9ea7e95 100644 --- a/Source/Level/Hotspot.cpp +++ b/Source/Level/Hotspot.cpp @@ -23,16 +23,16 @@ 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) { }