forked from simulationcraft/simc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem_runeforge.hpp
34 lines (26 loc) · 1.18 KB
/
item_runeforge.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// ==========================================================================
// Dedmonwakeen's Raid DPS/TPS Simulator.
// Send questions to [email protected]
// ==========================================================================
#ifndef ITEM_RUNEFORGE_HPP
#define ITEM_RUNEFORGE_HPP
#include "util/span.hpp"
#include "util/string_view.hpp"
#include "client_data.hpp"
struct runeforge_legendary_entry_t
{
unsigned bonus_id;
unsigned specialization_id;
unsigned spell_id;
unsigned mask_inv_type;
unsigned covenant_id;
const char* name;
static util::span<const runeforge_legendary_entry_t> find( unsigned bonus_id, bool ptr )
{ return dbc::find_many<runeforge_legendary_entry_t>( bonus_id, ptr, {}, &runeforge_legendary_entry_t::bonus_id ); }
static util::span<const runeforge_legendary_entry_t> find( util::string_view name, bool ptr, bool tokenized = false );
static util::span<const runeforge_legendary_entry_t> find_by_spellid( unsigned spell_id, bool ptr );
static const runeforge_legendary_entry_t& nil()
{ return dbc::nil<runeforge_legendary_entry_t>; }
static util::span<const runeforge_legendary_entry_t> data( bool ptr );
};
#endif /* ITEM_RUNEFORGE_HPP */