cirnogodot/Scripts/Resources/UiItemType.cs

13 lines
172 B
C#
Raw Permalink Normal View History

using System;
namespace Cirno.Scripts.Resources;
[Flags]
public enum UiItemType
{
Icon = 1 << 1,
Count = 1 << 2,
Ammo = 1 << 3,
Energy = 1 << 4,
}