Initial Commit
This commit is contained in:
commit
ee5c2f922d
2255 changed files with 547750 additions and 0 deletions
14
Assets/Scripts/Events/ItemPickupEventData.cs
Normal file
14
Assets/Scripts/Events/ItemPickupEventData.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using Unity.Entities;
|
||||
|
||||
namespace Events
|
||||
{
|
||||
public struct ItemPickupEventData : IComponentData
|
||||
{
|
||||
public readonly Entity PlayerEntity;
|
||||
|
||||
public ItemPickupEventData(Entity playerEntity)
|
||||
{
|
||||
PlayerEntity = playerEntity;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue