]> git.tdb.fi Git - poefilter.git/blob - source/effectcolor.h
Add support for the new visual indicators
[poefilter.git] / source / effectcolor.h
1 #ifndef EFFECTCOLOR_H_
2 #define EFFECTCOLOR_H_
3
4 #include <msp/strings/lexicalcast.h>
5
6 enum EffectColor
7 {
8         WHITE,
9         RED,
10         GREEN,
11         BLUE,
12         BROWN,
13         YELLOW
14 };
15
16 void operator>>(const Msp::LexicalConverter &, EffectColor &);
17 void operator<<(Msp::LexicalConverter &, EffectColor);
18
19 #endif