mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-23 05:05:53 +12:00
Add Feature pt1
This commit is contained in:
parent
a184e4d735
commit
092534e331
131 changed files with 3113 additions and 1418 deletions
15
HorseIsleServer/LibHISP/Game/GameExceptions.cs
Normal file
15
HorseIsleServer/LibHISP/Game/GameExceptions.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
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 { };
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue