2017-02-27 15:27:48 +01:00
|
|
|
/*
|
|
|
|
* This software is licensed under the terms of the MIT-License
|
|
|
|
* See COPYING for further information.
|
|
|
|
* ---
|
|
|
|
* Copyright (C) 2011, Lukas Weber <laochailan@web.de>
|
|
|
|
* Copyright (C) 2012, Alexeyew Andrew <http://akari.thebadasschoobs.org/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DIFFICULTY_H
|
|
|
|
#define DIFFICULTY_H
|
|
|
|
|
|
|
|
#include "color.h"
|
|
|
|
|
|
|
|
struct Color;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
D_Any = 0,
|
|
|
|
D_Easy,
|
|
|
|
D_Normal,
|
|
|
|
D_Hard,
|
|
|
|
D_Lunatic,
|
|
|
|
D_Extra // reserved for later
|
|
|
|
} Difficulty;
|
|
|
|
|
|
|
|
#define NUM_SELECTABLE_DIFFICULTIES D_Lunatic
|
|
|
|
|
|
|
|
const char* difficulty_name(Difficulty diff);
|
2017-02-26 21:59:51 +01:00
|
|
|
Color difficulty_color(Difficulty diff);
|
2017-02-27 15:27:48 +01:00
|
|
|
|
|
|
|
#endif
|