X-Git-Url: https://git.jsancho.org/?p=lugaru.git;a=blobdiff_plain;f=Source%2FLevel%2FAwards.hpp;h=dbb877041dbe3ccefa3d1635d1058a146395c15e;hp=5841e2620643ff21f0cc1a2e75e7eb4b29d4ab08;hb=6a8cb464330e92163c8feaf101b8b5837c973bba;hpb=5fca41ab430df85d6dd620a7f4130df01bc1430f diff --git a/Source/Level/Awards.hpp b/Source/Level/Awards.hpp index 5841e26..dbb8770 100644 --- a/Source/Level/Awards.hpp +++ b/Source/Level/Awards.hpp @@ -20,14 +20,15 @@ along with Lugaru. If not, see . #ifndef _AWARDS_HPP_ #define _AWARDS_HPP_ -enum bonus_types { +enum bonus_types +{ #define DECLARE_BONUS(id, ...) id, #include "Bonuses.def" #undef DECLARE_BONUS bonus_count }; -extern const char *bonus_names[bonus_count]; +extern const char* bonus_names[bonus_count]; extern int bonus; extern int bonusvalue; @@ -38,16 +39,17 @@ extern float bonusnum[100]; extern void award_bonus(int playerid, int bonusid, int alt_value = 0); -enum award_types { +enum award_types +{ #define DECLARE_AWARD(id, name) id, #include "Awards.def" #undef DECLARE_AWARD award_count }; -extern const char *award_names[award_count]; +extern const char* award_names[award_count]; -extern int award_awards(int *); +extern int award_awards(int*); extern float damagetaken; extern int numfalls; @@ -67,4 +69,3 @@ extern int numreversals; extern int numattacks; extern int maxalarmed; #endif -