mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
15 lines
395 B
C#
15 lines
395 B
C#
using System;
|
|
|
|
|
|
namespace HISP.Game
|
|
{
|
|
// Inventory
|
|
public class InventoryException : Exception { };
|
|
public class InventoryFullException : InventoryException { };
|
|
public class InventoryMaxStackException : InventoryException { };
|
|
|
|
// Drawingroom
|
|
public class DrawingroomException : Exception { };
|
|
public class DrawingroomFullException : DrawingroomException { };
|
|
|
|
}
|