]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Level/Hotspot.hpp
clang-format: Apply to all headers
[lugaru.git] / Source / Level / Hotspot.hpp
index 3629a55ddeb5fc0c7aebf1048e91c019ab4c4ba4..210ba914d4d3d25a01bfb76ce807ce9e320ab4ea 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Copyright (C) 2003, 2010 - Wolfire Games
-Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file)
+Copyright (C) 2010-2017 - Lugaru contributors (see AUTHORS file)
 
 This file is part of Lugaru.
 
@@ -21,7 +21,7 @@ along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
 #ifndef _HOTSPOT_HPP_
 #define _HOTSPOT_HPP_
 
-#include "Math/Quaternions.hpp"
+#include "Math/XYZ.hpp"
 
 #include <vector>
 
@@ -38,7 +38,7 @@ public:
     XYZ position;
     int type;
     float size;
-    char text[256] = {0};
+    char text[256] = { 0 };
 };
 
 #endif