Files
ShrinkNetwork.Integration.E…/ShrinkNetworkEventBusBridgeOptions.cs
T
cneicy 05bfe9c430
Publish UPM package / publish (push) Failing after 1s
chore: initialize standalone UPM package
2026-08-26 02:50:38 +08:00

15 lines
470 B
C#

#nullable enable
using System;
using ShrinkEventBus;
namespace ShrinkNetwork.Integration
{
public sealed class ShrinkNetworkEventBusBridgeOptions
{
public bool AutoRegisterAttributedMessages { get; set; } = true;
public bool AutoRegisterStaticHandlers { get; set; }
public Func<ShrinkNetworkSession, IShrinkEvent, bool>? SessionFilter { get; set; }
public IShrinkNetworkDispatchScheduler? DispatchScheduler { get; set; }
}
}