Move Display enum to Steps. Song still compiles.
This commit is contained in:
@@ -39,14 +39,6 @@ enum BackgroundLayer
|
|||||||
BACKGROUND_LAYER_Invalid
|
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. */
|
/** @brief A custom foreach loop for the different background layers. */
|
||||||
#define FOREACH_BackgroundLayer( bl ) FOREACH_ENUM( BackgroundLayer, bl )
|
#define FOREACH_BackgroundLayer( bl ) FOREACH_ENUM( BackgroundLayer, bl )
|
||||||
|
|
||||||
|
|||||||
@@ -22,6 +22,14 @@ struct lua_State;
|
|||||||
*/
|
*/
|
||||||
const int MAX_STEPS_DESCRIPTION_LENGTH = 255;
|
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.
|
* @brief Holds note information for a Song.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user