summaryrefslogtreecommitdiff
path: root/src/dungeon_flag.hpp
blob: bf8d77d87019c4701cd5bc2952d908bb436c87bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "dungeon_flag_set.hpp"
#include <boost/preprocessor/cat.hpp>

//
// Define flag set for each flag.
//
#define DF(tier, index, name) \
   DECLARE_FLAG(dungeon_flag_set, BOOST_PP_CAT(DF_,name), tier, index)
#include "dungeon_flag_list.hpp"
#undef DF