15 lines
279 B
C#
15 lines
279 B
C#
|
namespace HermesSocketLibrary.Quests
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum QuestType
|
||
|
{
|
||
|
Message = 0x0001,
|
||
|
EmoteMessage = 0x0002,
|
||
|
Redemption = 0x0004,
|
||
|
WatchTime = 0x0008,
|
||
|
|
||
|
Daily = 0x1000,
|
||
|
Weekly = 0x2000,
|
||
|
Monthly = 0x4000
|
||
|
}
|
||
|
}
|