]> git.tdb.fi Git - poefilter.git/blob - source/rarity.h
Initial version from when I last played
[poefilter.git] / source / rarity.h
1 #ifndef RARITY_H_
2 #define RARITY_H_
3
4 #include <msp/strings/lexicalcast.h>
5
6 enum Rarity
7 {
8         NORMAL,
9         MAGIC,
10         RARE,
11         UNIQUE
12 };
13
14 void operator>>(const Msp::LexicalConverter &, Rarity &);
15 void operator<<(Msp::LexicalConverter &, Rarity);
16
17 #endif