mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
10 lines
228 B
C#
Executable file
10 lines
228 B
C#
Executable file
using System;
|
|
|
|
|
|
namespace HISP.Game
|
|
{
|
|
// Inventory
|
|
class InventoryException : Exception { };
|
|
class InventoryFullException : InventoryException { };
|
|
class InventoryMaxStackException : InventoryException { };
|
|
}
|