Files
CypherCore/Source/Game/Loot/LootStorage.cs
T
2023-01-18 17:25:32 -05:00

22 lines
772 B
C#

// Copyright (c) CypherCore <http://github.com/CypherCore> All rights reserved.
// Licensed under the GNU GENERAL PUBLIC LICENSE. See LICENSE file in the project root for full license information.
namespace Game.Loots
{
public class LootStorage
{
public static LootStore Creature;
public static LootStore Fishing;
public static LootStore Gameobject;
public static LootStore Items;
public static LootStore Mail;
public static LootStore Milling;
public static LootStore Pickpocketing;
public static LootStore Reference;
public static LootStore Skinning;
public static LootStore Disenchant;
public static LootStore Prospecting;
public static LootStore Spell;
}
}