10 lines
129 B
C#
10 lines
129 B
C#
|
using System;
|
||
|
using UnityEngine.Events;
|
||
|
|
||
|
namespace RoR2;
|
||
|
|
||
|
[Serializable]
|
||
|
public class PurchaseEvent : UnityEvent<Interactor>
|
||
|
{
|
||
|
}
|