12 lines
181 B
C#
12 lines
181 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Util
|
|
{
|
|
public enum InventoryToggleOption
|
|
{
|
|
TOGGLE, SHOW, HIDE
|
|
}
|
|
}
|