2D-Platformer/Assets/Scripts/UI/SlotUiData.cs
2022-02-12 12:53:50 +02:00

12 lines
No EOL
190 B
C#

using DefaultNamespace;
using Unity.Entities;
namespace UI
{
public struct SlotUiData : IComponentData
{
public Entity Inventory;
public int Index;
public bool1 SpecialSlot;
}
}