mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-18 13:23:05 +00:00
18 lines
429 B
C#
18 lines
429 B
C#
|
using QSB.Events;
|
|||
|
using QSB.Utility;
|
|||
|
using QSB.WorldSync;
|
|||
|
|
|||
|
namespace QSB.OrbSync
|
|||
|
{
|
|||
|
public static class OrbPatches
|
|||
|
{
|
|||
|
public static void StartDragCallEvent(bool __result, NomaiInterfaceOrb __instance)
|
|||
|
{
|
|||
|
if (__result)
|
|||
|
{
|
|||
|
GlobalMessenger<int>.FireEvent(EventNames.QSBOrbUser, WorldRegistry.OldOrbList.FindIndex(x => x == __instance));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|