10 lines
191 B
C#
10 lines
191 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
public class PickupEvent : MonoBehaviour
|
|
{
|
|
public UnityEvent eventAfterPickup;
|
|
}
|