mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-07 16:34:36 +01:00
Restore NetworkMessageDirection enum
Fixes API breakage
This commit is contained in:
parent
5c7a5295d1
commit
470267a185
1 changed files with 18 additions and 0 deletions
18
Dalamud/Game/Network/NetworkMessageDirection.cs
Normal file
18
Dalamud/Game/Network/NetworkMessageDirection.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
namespace Dalamud.Game.Network;
|
||||
|
||||
/// <summary>
|
||||
/// This represents the direction of a network message.
|
||||
/// </summary>
|
||||
[Obsolete("No longer part of public API", true)]
|
||||
public enum NetworkMessageDirection
|
||||
{
|
||||
/// <summary>
|
||||
/// A zone down message.
|
||||
/// </summary>
|
||||
ZoneDown,
|
||||
|
||||
/// <summary>
|
||||
/// A zone up message.
|
||||
/// </summary>
|
||||
ZoneUp,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue