10 lines
145 B
C#
10 lines
145 B
C#
|
using System;
|
||
|
using UnityEngine.Events;
|
||
|
|
||
|
namespace RoR2.UI;
|
||
|
|
||
|
[Serializable]
|
||
|
public class PickupPickerEvent : UnityEvent<MPButton, PickupDef>
|
||
|
{
|
||
|
}
|