Socket classes for Hermes

This commit is contained in:
Tom
2024-06-24 22:31:45 +00:00
commit d8522584c4
26 changed files with 434 additions and 0 deletions

15
Quests/QuestType.cs Normal file
View File

@@ -0,0 +1,15 @@
namespace HermesSocketLibrary.Quests
{
[Flags]
public enum QuestType
{
Message = 0x0001,
EmoteMessage = 0x0002,
Redemption = 0x0004,
WatchTime = 0x0008,
Daily = 0x1000,
Weekly = 0x2000,
Monthly = 0x4000
}
}