mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:35:34 +00:00
13 lines
172 B
C#
13 lines
172 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Cirno.Scripts.Resources;
|
|||
|
|
|
|||
|
|
[Flags]
|
|||
|
|
public enum UiItemType
|
|||
|
|
{
|
|||
|
|
Icon = 1 << 1,
|
|||
|
|
Count = 1 << 2,
|
|||
|
|
Ammo = 1 << 3,
|
|||
|
|
Energy = 1 << 4,
|
|||
|
|
|
|||
|
|
}
|