10 lines
193 B
C#
10 lines
193 B
C#
|
|
using System;
|
||
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.Events;
|
||
|
|
|
||
|
|
namespace BracerLib.Events
|
||
|
|
{
|
||
|
|
[Serializable]
|
||
|
|
public class UnityInteractionEvent : UnityEvent<Collider2D, Collider2D> { }
|
||
|
|
}
|