r2mods/ilspy_dump/ror2_csproj/RoR2/ITeleportHandler.cs

10 lines
189 B
C#

using UnityEngine;
using UnityEngine.EventSystems;
namespace RoR2;
public interface ITeleportHandler : IEventSystemHandler
{
void OnTeleport(Vector3 oldPosition, Vector3 newPosition);
}