]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Level/Campaign.hpp
clang-format: Apply to all headers
[lugaru.git] / Source / Level / Campaign.hpp
index 514a686018f75ece0de010bf7cc1d176fa732d7b..0a3d734202b24ad37cf58dd76197bc3352b2d726 100644 (file)
@@ -35,9 +35,11 @@ class CampaignLevel
 {
 private:
     int width;
-    struct Position {
+    struct Position
+    {
         int x, y;
     };
+
 public:
     std::string mapname;
     std::string description;
@@ -57,8 +59,9 @@ public:
     int getEndY();
     XYZ getCenter();
     int getWidth();
-    std::istream& operator<< (std::istream& is);
-    friend std::istream& operator>> (std::istream& is, CampaignLevel& cl) {
+    std::istream& operator<<(std::istream& is);
+    friend std::istream& operator>>(std::istream& is, CampaignLevel& cl)
+    {
         return cl << is;
     }
 };