blob: 2dbf02f1f5bdfb49a1bc4b57bacd0ec5313d5ed1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef TIBIA_READER_HH_
#define TIBIA_READER_HH_ 1
#include "common.hh"
enum TReaderThreadOrderType: int {
READER_ORDER_TERMINATE = 0,
READER_ORDER_LOADSECTOR = 1,
READER_ORDER_LOADCHARACTER = 2,
};
enum TReaderThreadReplyType: int {
READER_REPLY_SECTORDATA = 0,
READER_REPLY_CHARACTERDATA = 1,
};
#endif //TIBIA_READER_HH
|