diff options
Diffstat (limited to '')
-rw-r--r-- | source/BlockArea.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/BlockArea.h b/source/BlockArea.h index 7624dec23..76c4f749a 100644 --- a/source/BlockArea.h +++ b/source/BlockArea.h @@ -149,12 +149,12 @@ public: NIBBLETYPE a_BlockLight = 0, NIBBLETYPE a_BlockSkyLight = 0x0f
);
- /// Rotates the entire area clockwise around the Y axis
- void RotateCW(void);
-
/// Rotates the entire area counter-clockwise around the Y axis
void RotateCCW(void);
+ /// Rotates the entire area clockwise around the Y axis
+ void RotateCW(void);
+
/// Mirrors the entire area around the XY plane
void MirrorXY(void);
@@ -164,12 +164,12 @@ public: /// Mirrors the entire area around the YZ plane
void MirrorYZ(void);
- /// Rotates the entire area clockwise around the Y axis, doesn't use blockhandlers for block meta
- void RotateCWNoMeta(void);
-
/// Rotates the entire area counter-clockwise around the Y axis, doesn't use blockhandlers for block meta
void RotateCCWNoMeta(void);
+ /// Rotates the entire area clockwise around the Y axis, doesn't use blockhandlers for block meta
+ void RotateCWNoMeta(void);
+
/// Mirrors the entire area around the XY plane, doesn't use blockhandlers for block meta
void MirrorXYNoMeta(void);
|