Scriptum/Assets/Scripts/REFACTORING/Application/Shared/Event/CollectItemEvent.cs
2022-12-27 15:24:26 +01:00

10 lines
160 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
public class CollectItemEvent : UnityEvent<Item>
{
}