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

18 lines
474 B
C#

using ShrinkEventBus;
namespace ShrinkNetwork.Integration
{
public interface IShrinkNetworkDeltaEvent
{
string DeltaKey { get; }
long DeltaVersion { get; }
}
[ShrinkNetworkMessage(-300001, "__integration/event_result_response")]
public sealed class ShrinkNetworkEventResultResponse : ShrinkRpcResponseBase
{
public EventResult Result { get; set; } = EventResult.DEFAULT;
public bool IsCanceled { get; set; }
}
}