mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-27 03:35:20 +00:00
15 lines
391 B
C#
15 lines
391 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;
|
|
}
|
|
}
|
|
} |