Implement most of the callbacks, few other changes too

This commit is contained in:
CWX
2025-01-11 17:14:56 +00:00
parent ba78a15613
commit 8f22759ec5
44 changed files with 1601 additions and 494 deletions
+15 -1
View File
@@ -1,6 +1,20 @@
using Core.Models.Eft.Common;
using Core.Models.Eft.Common.Tables;
using Core.Models.Eft.ItemEvent;
using Core.Models.Eft.Quests;
namespace Core.Controllers;
public class RepeatableQuestController
{
// TODO
}
public ItemEventRouterResponse ChangeRepeatableQuest(PmcData pmcData, RepeatableQuestChangeRequest info, string sessionId)
{
throw new NotImplementedException();
}
public List<PmcDataRepeatableQuest> GetClientRepeatableQuests(string sessionId)
{
throw new NotImplementedException();
}
}