HISP/Horse Isle Server/HorseIsleServer/Game/GameExceptions.cs
2021-01-28 20:56:27 +13:00

10 lines
228 B
C#

using System;
namespace HISP.Game
{
// Inventory
class InventoryException : Exception { };
class InventoryFullException : InventoryException { };
class InventoryMaxStackException : InventoryException { };
}