mirror of
https://github.com/D4M13N-D3V/godot_grid_inventory.git
synced 2025-03-14 08:14:55 +00:00
15 lines
235 B
C#
15 lines
235 B
C#
using System;
|
|
|
|
namespace GodotGridInventory.Code.Items.Enums;
|
|
|
|
[Flags]
|
|
public enum EnumItemActions
|
|
{
|
|
None = 0,
|
|
Examine = 1 << 1,
|
|
Equip = 1 << 2,
|
|
Use = 1 << 3,
|
|
Open = 1 << 4,
|
|
Drop = 1 << 5,
|
|
Destroy = 1 << 6
|
|
} |