Dalamud/Dalamud/Game/Inventory/GameInventoryChangelogState.cs
2023-11-30 20:22:08 +09:00

17 lines
349 B
C#

namespace Dalamud.Game.Inventory;
/// <summary>
/// Class representing a item's changelog state.
/// </summary>
internal enum GameInventoryChangelogState
{
/// <summary>
/// Item was added to an inventory.
/// </summary>
Added,
/// <summary>
/// Item was removed from an inventory.
/// </summary>
Removed,
}