forked from TrinityCore/WowPacketParser
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
124 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,5 +20,6 @@ public enum ClientType | |
WotLKClassic = 8, | ||
Dragonflight = 9, | ||
CataClassic = 9, | ||
TheWarWithin = 10, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
using WowPacketParser.Misc; | ||
|
||
namespace WowPacketParser.Enums.Version.V11_0_0_55666 | ||
{ | ||
public static class Opcodes_11_0_0 | ||
{ | ||
public static BiDictionary<Opcode, int> Opcodes(Direction direction) | ||
{ | ||
switch (direction) | ||
{ | ||
case Direction.ClientToServer: | ||
return ClientOpcodes; | ||
case Direction.ServerToClient: | ||
return ServerOpcodes; | ||
default: | ||
return MiscOpcodes; | ||
} | ||
} | ||
|
||
private static readonly BiDictionary<Opcode, int> ClientOpcodes = new() | ||
{ | ||
}; | ||
|
||
private static readonly BiDictionary<Opcode, int> ServerOpcodes = new() | ||
{ | ||
}; | ||
|
||
private static readonly BiDictionary<Opcode, int> MiscOpcodes = new(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
WowPacketParserModule.V11_0_0_55666/WowPacketParserModule.V11_0_0_55666.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="../default.props" /> | ||
|
||
<PropertyGroup> | ||
<OutputPath>../WowPacketParser/bin/$(Configuration)/Parsers/</OutputPath> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Sigil" Version="5.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\WowPacketParserModule.Substructures\WowPacketParserModule.Substructures.csproj"> | ||
<EmbedInteropTypes>false</EmbedInteropTypes> | ||
<Private>true</Private> | ||
</ProjectReference> | ||
<ProjectReference Include="..\WowPacketParserModule.V6_0_2_19033\WowPacketParserModule.V6_0_2_19033.csproj"> | ||
<EmbedInteropTypes>false</EmbedInteropTypes> | ||
<Private>false</Private> | ||
</ProjectReference> | ||
<ProjectReference Include="..\WowPacketParserModule.V7_0_3_22248\WowPacketParserModule.V7_0_3_22248.csproj"> | ||
<EmbedInteropTypes>false</EmbedInteropTypes> | ||
<Private>false</Private> | ||
</ProjectReference> | ||
<ProjectReference Include="..\WowPacketParserModule.V8_0_1_27101\WowPacketParserModule.V8_0_1_27101.csproj"> | ||
<EmbedInteropTypes>false</EmbedInteropTypes> | ||
<Private>false</Private> | ||
</ProjectReference> | ||
<ProjectReference Include="..\WowPacketParserModule.V9_0_1_36216\WowPacketParserModule.V9_0_1_36216.csproj"> | ||
<EmbedInteropTypes>false</EmbedInteropTypes> | ||
<Private>false</Private> | ||
</ProjectReference> | ||
<ProjectReference Include="..\WowPacketParserModule.V10_0_0_46181\WowPacketParserModule.V10_0_0_46181.csproj"> | ||
<EmbedInteropTypes>false</EmbedInteropTypes> | ||
<Private>false</Private> | ||
</ProjectReference> | ||
<ProjectReference Include="..\WowPacketParser\WowPacketParser.csproj"> | ||
<Private>false</Private> | ||
<EmbedInteropTypes>false</EmbedInteropTypes> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="DBFileReaderLib"> | ||
<HintPath>..\packages\DBFileReaderLib.1.0.0.0\lib\DBFileReaderLib.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
</Project> |