summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/notes.h')
-rw-r--r--crawl-ref/source/notes.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/notes.h b/crawl-ref/source/notes.h
index 6dfa327992..0948334b06 100644
--- a/crawl-ref/source/notes.h
+++ b/crawl-ref/source/notes.h
@@ -15,7 +15,8 @@
#include <vector>
#include <stdio.h>
-enum NOTE_TYPES {
+enum NOTE_TYPES
+{
NOTE_HP_CHANGE = 0, /* needs: new hp, max hp */
NOTE_MAXHP_CHANGE, /* needs: new maxhp */
NOTE_MP_CHANGE, /* needs: new mp, max mp */
@@ -41,7 +42,8 @@ enum NOTE_TYPES {
NOTE_NUM_TYPES
};
-struct Note {
+struct Note
+{
Note();
Note( NOTE_TYPES t, int f = 0, int s = 0, const char* n = 0,
const char* d = 0);