10 lines
160 B
C#
10 lines
160 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.Events;
|
||
|
|
||
|
public class CollectItemEvent : UnityEvent<Item>
|
||
|
{
|
||
|
|
||
|
}
|