(svn r12541) -Codechange: Declare Slope enum as bit set, and remove some (then) unneeded casts.

This commit is contained in:
frosch
2008-04-02 14:13:15 +00:00
parent ae01e263ad
commit 3e9baa7dfb
4 changed files with 13 additions and 12 deletions

View File

@@ -70,6 +70,7 @@ enum Slope {
SLOPE_HALFTILE_E = SLOPE_HALFTILE | (CORNER_E << 6), ///< the east halftile is leveled (non continuous slope)
SLOPE_HALFTILE_N = SLOPE_HALFTILE | (CORNER_N << 6), ///< the north halftile is leveled (non continuous slope)
};
DECLARE_ENUM_AS_BIT_SET(Slope)
/**