mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-11 09:55:55 +00:00
Separated ammo and notifications from hud
This commit is contained in:
parent
d644cece7f
commit
46c433e5f7
39 changed files with 258 additions and 86 deletions
13
Scripts/Resources/UiItemType.cs
Normal file
13
Scripts/Resources/UiItemType.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
|
||||
namespace Cirno.Scripts.Resources;
|
||||
|
||||
[Flags]
|
||||
public enum UiItemType
|
||||
{
|
||||
Icon = 1 << 1,
|
||||
Count = 1 << 2,
|
||||
Ammo = 1 << 3,
|
||||
Energy = 1 << 4,
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue