Move Display enum to Steps. Song still compiles.

This commit is contained in:
Jason Felds
2011-07-07 15:27:09 -04:00
parent 29ffe4e772
commit aff802e502
2 changed files with 8 additions and 8 deletions
-8
View File
@@ -39,14 +39,6 @@ enum BackgroundLayer
BACKGROUND_LAYER_Invalid
};
/** @brief The different ways of displaying the BPM. */
enum DisplayBPM
{
DISPLAY_BPM_ACTUAL, /**< Display the song's actual BPM. */
DISPLAY_BPM_SPECIFIED, /**< Display a specified value or values. */
DISPLAY_BPM_RANDOM /**< Display a random selection of BPMs. */
};
/** @brief A custom foreach loop for the different background layers. */
#define FOREACH_BackgroundLayer( bl ) FOREACH_ENUM( BackgroundLayer, bl )
+8
View File
@@ -22,6 +22,14 @@ struct lua_State;
*/
const int MAX_STEPS_DESCRIPTION_LENGTH = 255;
/** @brief The different ways of displaying the BPM. */
enum DisplayBPM
{
DISPLAY_BPM_ACTUAL, /**< Display the song's actual BPM. */
DISPLAY_BPM_SPECIFIED, /**< Display a specified value or values. */
DISPLAY_BPM_RANDOM /**< Display a random selection of BPMs. */
};
/**
* @brief Holds note information for a Song.
*