mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-08 09:41:07 +00:00
14 lines
380 B
C#
14 lines
380 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;
|
|
}
|
|
} |