Remove msg folder

This commit is contained in:
Mikhail
2024-12-21 09:50:05 -05:00
parent 3b05037be5
commit b7a655c169
204 changed files with 209 additions and 209 deletions

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Antibot namespace EpinelPS.LobbyServer.Antibot
{ {
[PacketPath("/antibot/battlereportdata")] [PacketPath("/antibot/battlereportdata")]
public class BattleReportData : LobbyMsgHandler public class BattleReportData : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Antibot namespace EpinelPS.LobbyServer.Antibot
{ {
[PacketPath("/antibot/recvdata")] [PacketPath("/antibot/recvdata")]
public class RecieveAntibotData : LobbyMsgHandler public class RecieveAntibotData : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.Database; using EpinelPS.Database;
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/storydungeon/clearstage")] [PacketPath("/archive/storydungeon/clearstage")]
public class ClearArchiveStage : LobbyMsgHandler public class ClearArchiveStage : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/storydungeon/enterstage")] [PacketPath("/archive/storydungeon/enterstage")]
public class EnterArchiveStage : LobbyMsgHandler public class EnterArchiveStage : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/bookmark/scenario/exist")] [PacketPath("/bookmark/scenario/exist")]
public class CheckBookmarkScenarioExists : LobbyMsgHandler public class CheckBookmarkScenarioExists : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@ using EpinelPS.Utils;
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.StaticInfo; // Ensure this namespace is included using EpinelPS.StaticInfo; // Ensure this namespace is included
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/scenario/complete")] [PacketPath("/archive/scenario/complete")]
public class CompleteScenario : LobbyMsgHandler public class CompleteScenario : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.Database; using EpinelPS.Database;
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/storydungeon/fastclearstage")] [PacketPath("/archive/storydungeon/fastclearstage")]
public class FastClearArchiveStage : LobbyMsgHandler public class FastClearArchiveStage : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.Database; using EpinelPS.Database;
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/storydungeon/get")] [PacketPath("/archive/storydungeon/get")]
public class GetArchiveStoryDungeon : LobbyMsgHandler public class GetArchiveStoryDungeon : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/get")] [PacketPath("/archive/get")]
public class GetArchives : LobbyMsgHandler public class GetArchives : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/minigame/getdata")] [PacketPath("/archive/minigame/getdata")]
public class GetMinigameData : LobbyMsgHandler public class GetMinigameData : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@ using EpinelPS.Utils;
using EpinelPS.StaticInfo; // Ensure this namespace is included using EpinelPS.StaticInfo; // Ensure this namespace is included
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/scenario/getnonresettable")] [PacketPath("/archive/scenario/getnonresettable")]
public class GetNonResettable : LobbyMsgHandler public class GetNonResettable : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/scenario/getresettable")] [PacketPath("/archive/scenario/getresettable")]
public class GetResettable : LobbyMsgHandler public class GetResettable : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
namespace EpinelPS.LobbyServer.Msgs.Archive namespace EpinelPS.LobbyServer.Archive
{ {
[PacketPath("/archive/messenger/get")] [PacketPath("/archive/messenger/get")]
public class GetArchiveMessenger : LobbyMsgHandler public class GetArchiveMessenger : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using Google.Protobuf.WellKnownTypes; using Google.Protobuf.WellKnownTypes;
namespace EpinelPS.LobbyServer.Msgs.Arena namespace EpinelPS.LobbyServer.Arena
{ {
[PacketPath("/arena/get")] [PacketPath("/arena/get")]
public class GetArena : LobbyMsgHandler public class GetArena : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using Google.Protobuf.WellKnownTypes; using Google.Protobuf.WellKnownTypes;
namespace EpinelPS.LobbyServer.Msgs.Arena namespace EpinelPS.LobbyServer.Arena
{ {
[PacketPath("/arena/getbaninfo")] [PacketPath("/arena/getbaninfo")]
public class GetArenaBanInfo : LobbyMsgHandler public class GetArenaBanInfo : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using Google.Protobuf.WellKnownTypes; using Google.Protobuf.WellKnownTypes;
namespace EpinelPS.LobbyServer.Msgs.Arena namespace EpinelPS.LobbyServer.Arena
{ {
[PacketPath("/arena/champion/get")] [PacketPath("/arena/champion/get")]
public class GetChampion : LobbyMsgHandler public class GetChampion : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using Google.Protobuf.WellKnownTypes; using Google.Protobuf.WellKnownTypes;
namespace EpinelPS.LobbyServer.Msgs.Arena namespace EpinelPS.LobbyServer.Arena
{ {
[PacketPath("/arena/special/showreward")] [PacketPath("/arena/special/showreward")]
public class ShowSpecialArenaReward : LobbyMsgHandler public class ShowSpecialArenaReward : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Auth namespace EpinelPS.LobbyServer.Auth
{ {
[PacketPath("/auth/logout")] [PacketPath("/auth/logout")]
public class AuthLogout : LobbyMsgHandler public class AuthLogout : LobbyMsgHandler

View File

@@ -7,7 +7,7 @@ using Paseto.Builder;
using Paseto; using Paseto;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace EpinelPS.LobbyServer.Msgs.Auth namespace EpinelPS.LobbyServer.Auth
{ {
[PacketPath("/auth/enterserver")] [PacketPath("/auth/enterserver")]
public class GetUserOnlineStateLog : LobbyMsgHandler public class GetUserOnlineStateLog : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using Google.Protobuf.WellKnownTypes; using Google.Protobuf.WellKnownTypes;
namespace EpinelPS.LobbyServer.Msgs.Auth namespace EpinelPS.LobbyServer.Auth
{ {
[PacketPath("/auth/intl")] [PacketPath("/auth/intl")]
public class DoIntlAuth : LobbyMsgHandler public class DoIntlAuth : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Badge namespace EpinelPS.LobbyServer.Badge
{ {
[PacketPath("/badge/delete")] [PacketPath("/badge/delete")]
public class DeleteBadge : LobbyMsgHandler public class DeleteBadge : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Badge namespace EpinelPS.LobbyServer.Badge
{ {
[PacketPath("/badge/sync")] [PacketPath("/badge/sync")]
public class SyncBadge : LobbyMsgHandler public class SyncBadge : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Campaign namespace EpinelPS.LobbyServer.Campaign
{ {
[PacketPath("/shutdownflags/campaignpackage/getall")] [PacketPath("/shutdownflags/campaignpackage/getall")]
public class CampaignPackageGetAll : LobbyMsgHandler public class CampaignPackageGetAll : LobbyMsgHandler

View File

@@ -1,8 +1,8 @@
using EpinelPS.LobbyServer.Msgs.Stage; using EpinelPS.LobbyServer.Stage;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Campaign namespace EpinelPS.LobbyServer.Campaign
{ {
[PacketPath("/campaign/getfield")] [PacketPath("/campaign/getfield")]
public class GetCampaignField : LobbyMsgHandler public class GetCampaignField : LobbyMsgHandler

View File

@@ -1,9 +1,9 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.LobbyServer.Msgs.Stage; using EpinelPS.LobbyServer.Stage;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Campaign namespace EpinelPS.LobbyServer.Campaign
{ {
[PacketPath("/campaign/obtain/item")] [PacketPath("/campaign/obtain/item")]
public class ObtainItem : LobbyMsgHandler public class ObtainItem : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Campaign namespace EpinelPS.LobbyServer.Campaign
{ {
[PacketPath("/campaign/savefield")] [PacketPath("/campaign/savefield")]
public class SaveField : LobbyMsgHandler public class SaveField : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Campaign namespace EpinelPS.LobbyServer.Campaign
{ {
[PacketPath("/campaign/savefieldobject")] [PacketPath("/campaign/savefieldobject")]
public class SaveFieldObject : LobbyMsgHandler public class SaveFieldObject : LobbyMsgHandler

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/SynchroDevice/Change")] [PacketPath("/character/SynchroDevice/Change")]
public class ChangeSynchroDevice : LobbyMsgHandler public class ChangeSynchroDevice : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/upgrade")] [PacketPath("/character/upgrade")]
public class DoLimitBreak : LobbyMsgHandler public class DoLimitBreak : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/attractive/get")] [PacketPath("/character/attractive/get")]
public class GetCharacterAttractiveList : LobbyMsgHandler public class GetCharacterAttractiveList : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/costume/get")] [PacketPath("/character/costume/get")]
public class GetCharacterCostume : LobbyMsgHandler public class GetCharacterCostume : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/get")] [PacketPath("/character/get")]
public class GetCharacterData : LobbyMsgHandler public class GetCharacterData : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/synchrodevice/get")] [PacketPath("/character/synchrodevice/get")]
public class GetSynchrodevice : LobbyMsgHandler public class GetSynchrodevice : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/levelup")] [PacketPath("/character/levelup")]
public class LevelUp : LobbyMsgHandler public class LevelUp : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/SynchroDevice/Regist")] [PacketPath("/character/SynchroDevice/Regist")]
public class RegisterSynchroDevice : LobbyMsgHandler public class RegisterSynchroDevice : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/growreset")] [PacketPath("/character/growreset")]
public class ResetLevel : LobbyMsgHandler public class ResetLevel : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/costume/set")] [PacketPath("/character/costume/set")]
public class SetCharacterCostume : LobbyMsgHandler public class SetCharacterCostume : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/skill/levelup")] [PacketPath("/character/skill/levelup")]
public class SkillLevelUp : LobbyMsgHandler public class SkillLevelUp : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/SynchroDevice/LevelUp")] [PacketPath("/character/SynchroDevice/LevelUp")]
public class SynchroLevelUp : LobbyMsgHandler public class SynchroLevelUp : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/SynchroDevice/Unregist")] [PacketPath("/character/SynchroDevice/Unregist")]
public class UnregisterSynchroDevice : LobbyMsgHandler public class UnregisterSynchroDevice : LobbyMsgHandler

View File

@@ -2,7 +2,7 @@ using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
namespace EpinelPS.LobbyServer.Msgs.Character namespace EpinelPS.LobbyServer.Character
{ {
[PacketPath("/character/coreupgrade")] [PacketPath("/character/coreupgrade")]
public class CoreUpgrade : LobbyMsgHandler public class CoreUpgrade : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.System namespace EpinelPS.LobbyServer.Client
{ {
[PacketPath("/system/checkversion")] [PacketPath("/system/checkversion")]
public class CheckClientVersion : LobbyMsgHandler public class CheckClientVersion : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.ContentsOpen namespace EpinelPS.LobbyServer.ContentsOpen
{ {
[PacketPath("/contentsopen/get/unlock")] [PacketPath("/contentsopen/get/unlock")]
public class GetUnlocked : LobbyMsgHandler public class GetUnlocked : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.ContentsOpen namespace EpinelPS.LobbyServer.ContentsOpen
{ {
[PacketPath("/contentsopen/set/unlock/button")] [PacketPath("/contentsopen/set/unlock/button")]
public class SetUnlockButton : LobbyMsgHandler public class SetUnlockButton : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.ContentsOpen namespace EpinelPS.LobbyServer.ContentsOpen
{ {
[PacketPath("/contentsopen/set/unlock/popup")] [PacketPath("/contentsopen/set/unlock/popup")]
public class SetUnlockPopup : LobbyMsgHandler public class SetUnlockPopup : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Episode namespace EpinelPS.LobbyServer.Episode
{ {
[PacketPath("/episode/mission/enter")] [PacketPath("/episode/mission/enter")]
public class ListMission : LobbyMsgHandler public class ListMission : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Event namespace EpinelPS.LobbyServer.Event
{ {
[PacketPath("/bookmark/event/scenario/exist")] [PacketPath("/bookmark/event/scenario/exist")]
public class CheckBookmarkScenarioExists : LobbyMsgHandler public class CheckBookmarkScenarioExists : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Event namespace EpinelPS.LobbyServer.Event
{ {
[PacketPath("/event/scenario/exist")] [PacketPath("/event/scenario/exist")]
public class CheckScenarioExists : LobbyMsgHandler public class CheckScenarioExists : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Event namespace EpinelPS.LobbyServer.Event
{ {
[PacketPath("/event/scenario/complete")] [PacketPath("/event/scenario/complete")]
public class CompleteEventScenario : LobbyMsgHandler public class CompleteEventScenario : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Event namespace EpinelPS.LobbyServer.Event
{ {
[PacketPath("/eventfield/enter")] [PacketPath("/eventfield/enter")]
public class EnterEventField : LobbyMsgHandler public class EnterEventField : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Event namespace EpinelPS.LobbyServer.Event
{ {
[PacketPath("/event/login/get")] [PacketPath("/event/login/get")]
public class EventLoginGet : LobbyMsgHandler public class EventLoginGet : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Event namespace EpinelPS.LobbyServer.Event
{ {
[PacketPath("/event/mission/getclear")] [PacketPath("/event/mission/getclear")]
public class GetClearedMissions : LobbyMsgHandler public class GetClearedMissions : LobbyMsgHandler

View File

@@ -4,7 +4,7 @@ using EpinelPS.StaticInfo; // For GameData access
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace EpinelPS.LobbyServer.Msgs.Event namespace EpinelPS.LobbyServer.Event
{ {
[PacketPath("/event/scenario/get")] [PacketPath("/event/scenario/get")]
public class GetEventScenario : LobbyMsgHandler public class GetEventScenario : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Event namespace EpinelPS.LobbyServer.Event
{ {
[PacketPath("/event/getjoinedevent")] [PacketPath("/event/getjoinedevent")]
public class GetJoinedEvent : LobbyMsgHandler public class GetJoinedEvent : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Event namespace EpinelPS.LobbyServer.Event
{ {
[PacketPath("/event/list")] [PacketPath("/event/list")]
public class ListEvents : LobbyMsgHandler public class ListEvents : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Event.Mission namespace EpinelPS.LobbyServer.Event.Mission
{ {
[PacketPath("/event/mission/getclearlist")] [PacketPath("/event/mission/getclearlist")]
public class GetClearList : LobbyMsgHandler public class GetClearList : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.Database; using EpinelPS.Database;
namespace EpinelPS.LobbyServer.Msgs.Event.StoryEvent namespace EpinelPS.LobbyServer.Event.StoryEvent
{ {
[PacketPath("/event/storydungeon/get")] [PacketPath("/event/storydungeon/get")]
public class GetStoryDungeon : LobbyMsgHandler public class GetStoryDungeon : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.FavoriteItem namespace EpinelPS.LobbyServer.FavoriteItem
{ {
[PacketPath("/favoriteitem/library")] [PacketPath("/favoriteitem/library")]
public class GetFavoriteItemLibrary : LobbyMsgHandler public class GetFavoriteItemLibrary : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.FavoriteItem namespace EpinelPS.LobbyServer.FavoriteItem
{ {
[PacketPath("/favoriteitem/list")] [PacketPath("/favoriteitem/list")]
public class ListFavoriteItem : LobbyMsgHandler public class ListFavoriteItem : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.FavoriteItem namespace EpinelPS.LobbyServer.FavoriteItem
{ {
[PacketPath("/favoriteitem/quest/list")] [PacketPath("/favoriteitem/quest/list")]
public class ListFavoriteItemQuests : LobbyMsgHandler public class ListFavoriteItemQuests : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Friend namespace EpinelPS.LobbyServer.Friend
{ {
[PacketPath("/friend/get")] [PacketPath("/friend/get")]
public class GetFriends : LobbyMsgHandler public class GetFriends : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Gacha namespace EpinelPS.LobbyServer.Gacha
{ {
[PacketPath("/gacha/event/check")] [PacketPath("/gacha/event/check")]
public class CheckGachaDailyEvent : LobbyMsgHandler public class CheckGachaDailyEvent : LobbyMsgHandler

View File

@@ -7,7 +7,7 @@ using EpinelPS.Database;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Gacha namespace EpinelPS.LobbyServer.Gacha
{ {
[PacketPath("/gacha/execute")] [PacketPath("/gacha/execute")]
public class ExecGacha : LobbyMsgHandler public class ExecGacha : LobbyMsgHandler

View File

@@ -5,7 +5,7 @@ using EpinelPS.Database;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Gacha namespace EpinelPS.LobbyServer.Gacha
{ {
[PacketPath("/gacha/event/execute")] [PacketPath("/gacha/event/execute")]
public class ExecuteEventGacha : LobbyMsgHandler public class ExecuteEventGacha : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Gacha namespace EpinelPS.LobbyServer.Gacha
{ {
[PacketPath("/gacha/pity/list")] [PacketPath("/gacha/pity/list")]
public class ListPity : LobbyMsgHandler public class ListPity : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using Google.Protobuf.WellKnownTypes; using Google.Protobuf.WellKnownTypes;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs namespace EpinelPS.LobbyServer
{ {
[PacketPath("/now")] [PacketPath("/now")]
public class GetCurrentTime : LobbyMsgHandler public class GetCurrentTime : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
namespace EpinelPS.LobbyServer.Msgs namespace EpinelPS.LobbyServer
{ {
[PacketPath("/Gacha/Get")] [PacketPath("/Gacha/Get")]
public class GetGacha : LobbyMsgHandler public class GetGacha : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Intercept namespace EpinelPS.LobbyServer.Intercept
{ {
[PacketPath("/intercept/Anomalous/Data")] [PacketPath("/intercept/Anomalous/Data")]
public class GetAnomalousData : LobbyMsgHandler public class GetAnomalousData : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Intercept namespace EpinelPS.LobbyServer.Intercept
{ {
[PacketPath("/intercept/Anomalous/Enter")] [PacketPath("/intercept/Anomalous/Enter")]
public class EnterAnomalousIntercept : LobbyMsgHandler public class EnterAnomalousIntercept : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Intercept namespace EpinelPS.LobbyServer.Intercept
{ {
[PacketPath("/intercept/Anomalous/FastClear")] [PacketPath("/intercept/Anomalous/FastClear")]
public class AnomalousFastClear : LobbyMsgHandler public class AnomalousFastClear : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Intercept namespace EpinelPS.LobbyServer.Intercept
{ {
[PacketPath("/intercept/Anomalous/Finish")] [PacketPath("/intercept/Anomalous/Finish")]
public class FinishAnomalousIntercept : LobbyMsgHandler public class FinishAnomalousIntercept : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Intercept namespace EpinelPS.LobbyServer.Intercept
{ {
[PacketPath("/intercept/get")] [PacketPath("/intercept/get")]
public class GetInterceptData : LobbyMsgHandler public class GetInterceptData : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Intercept namespace EpinelPS.LobbyServer.Intercept
{ {
[PacketPath("/intercept/check")] [PacketPath("/intercept/check")]
public class CheckClearInterceptToday : LobbyMsgHandler public class CheckClearInterceptToday : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Intercept namespace EpinelPS.LobbyServer.Intercept
{ {
[PacketPath("/intercept/clear")] [PacketPath("/intercept/clear")]
public class ClearInterceptData : LobbyMsgHandler public class ClearInterceptData : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Intercept namespace EpinelPS.LobbyServer.Intercept
{ {
[PacketPath("/intercept/enter")] [PacketPath("/intercept/enter")]
public class EnterInterceptData : LobbyMsgHandler public class EnterInterceptData : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Intercept namespace EpinelPS.LobbyServer.Intercept
{ {
[PacketPath("/intercept/fastclear")] [PacketPath("/intercept/fastclear")]
public class FastClearInterceptData : LobbyMsgHandler public class FastClearInterceptData : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Inventory namespace EpinelPS.LobbyServer.Inventory
{ {
[PacketPath("/inventory/allclearequipment")] [PacketPath("/inventory/allclearequipment")]
public class ClearAllEquipment : LobbyMsgHandler public class ClearAllEquipment : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Inventory namespace EpinelPS.LobbyServer.Inventory
{ {
[PacketPath("/inventory/clearequipment")] [PacketPath("/inventory/clearequipment")]
public class ClearEquipment : LobbyMsgHandler public class ClearEquipment : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Inventory namespace EpinelPS.LobbyServer.Inventory
{ {
[PacketPath("/inventory/get")] [PacketPath("/inventory/get")]
public class GetInventoryData : LobbyMsgHandler public class GetInventoryData : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Inventory namespace EpinelPS.LobbyServer.Inventory
{ {
[PacketPath("/inventory/usepiece")] [PacketPath("/inventory/usepiece")]
public class UsePiece : LobbyMsgHandler public class UsePiece : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Inventory namespace EpinelPS.LobbyServer.Inventory
{ {
[PacketPath("/inventory/wearequipment")] [PacketPath("/inventory/wearequipment")]
public class WearEquipment : LobbyMsgHandler public class WearEquipment : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Inventory namespace EpinelPS.LobbyServer.Inventory
{ {
[PacketPath("/inventory/wearequipmentlist")] [PacketPath("/inventory/wearequipmentlist")]
public class WearEquipmentList : LobbyMsgHandler public class WearEquipmentList : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Jukebox namespace EpinelPS.LobbyServer.Jukebox
{ {
[PacketPath("/jukebox/set/tableid")] [PacketPath("/jukebox/set/tableid")]
public class SetTableId : LobbyMsgHandler public class SetTableId : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Liberate namespace EpinelPS.LobbyServer.Liberate
{ {
[PacketPath("/liberate/choosecharacter")] [PacketPath("/liberate/choosecharacter")]
public class ChooseCharacter : LobbyMsgHandler public class ChooseCharacter : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Liberate namespace EpinelPS.LobbyServer.Liberate
{ {
[PacketPath("/liberate/get")] [PacketPath("/liberate/get")]
public class GetLiberateData : LobbyMsgHandler public class GetLiberateData : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.Liberate namespace EpinelPS.LobbyServer.Liberate
{ {
[PacketPath("/liberate/getprogresslist")] [PacketPath("/liberate/getprogresslist")]
public class GetProgressList : LobbyMsgHandler public class GetProgressList : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/lobby/usertitle/acquire")] [PacketPath("/lobby/usertitle/acquire")]
public class AquireUserTitle : LobbyMsgHandler public class AquireUserTitle : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/user/wallpaper/buy")] [PacketPath("/user/wallpaper/buy")]
public class BuyWallpaper : LobbyMsgHandler public class BuyWallpaper : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Database; using EpinelPS.Database;
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/enterlobbyserver")] [PacketPath("/enterlobbyserver")]
public class EnterLobbyServer : LobbyMsgHandler public class EnterLobbyServer : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/featureflags/all/get")] [PacketPath("/featureflags/all/get")]
public class GetAllFeatureFlags : LobbyMsgHandler public class GetAllFeatureFlags : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/user/getcontentsdata")] [PacketPath("/user/getcontentsdata")]
public class GetContentsData : LobbyMsgHandler public class GetContentsData : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/user/getfieldtalklist")] [PacketPath("/user/getfieldtalklist")]
public class GetFieldTalkList : LobbyMsgHandler public class GetFieldTalkList : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/mail/get")] [PacketPath("/mail/get")]
public class GetMail : LobbyMsgHandler public class GetMail : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/ProfileCard/Possession/Get")] [PacketPath("/ProfileCard/Possession/Get")]
public class GetProfileCardPossession : LobbyMsgHandler public class GetProfileCardPossession : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/ProfileCard/DecorationLayout/Get")] [PacketPath("/ProfileCard/DecorationLayout/Get")]
public class GetProfileDecoration : LobbyMsgHandler public class GetProfileDecoration : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.StaticInfo; using EpinelPS.StaticInfo;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/User/GetProfileFrame")] [PacketPath("/User/GetProfileFrame")]
public class GetProfileFrame : LobbyMsgHandler public class GetProfileFrame : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/User/GetScenarioList")] [PacketPath("/User/GetScenarioList")]
public class GetScenarioList : LobbyMsgHandler public class GetScenarioList : LobbyMsgHandler

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/user/speciallobbyslot/get")] [PacketPath("/user/speciallobbyslot/get")]
public class GetSpecialLobbySlotData : LobbyMsgHandler public class GetSpecialLobbySlotData : LobbyMsgHandler

View File

@@ -1,7 +1,7 @@
using EpinelPS.Utils; using EpinelPS.Utils;
using EpinelPS.Database; using EpinelPS.Database;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/User/Get")] [PacketPath("/User/Get")]
public class GetUser : LobbyMsgHandler public class GetUser : LobbyMsgHandler

View File

@@ -1,6 +1,6 @@
using EpinelPS.Utils; using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Msgs.User namespace EpinelPS.LobbyServer.LobbyUser
{ {
[PacketPath("/User/GetProfile")] [PacketPath("/User/GetProfile")]
public class GetUserProfile : LobbyMsgHandler public class GetUserProfile : LobbyMsgHandler

Some files were not shown because too many files have changed in this diff Show More