mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-04 12:39:52 +00:00
16 lines
392 B
C#
16 lines
392 B
C#
using Cysharp.Threading.Tasks;
|
|
using System.Threading;
|
|
|
|
namespace QSB.TriggerSync.WorldObjects
|
|
{
|
|
public class QSBSolanumTrigger : QSBTrigger<NomaiConversationManager>
|
|
{
|
|
public override async UniTask Init(CancellationToken ct)
|
|
{
|
|
await base.Init(ct);
|
|
AttachedObject.OnEntry -= TriggerOwner.OnEnterWatchVolume;
|
|
AttachedObject.OnExit -= TriggerOwner.OnExitWatchVolume;
|
|
}
|
|
}
|
|
}
|