Files
ft/Client/Assets/Scripts/EventPartnerGather/EventPartnerAutoMatchEvents.cs
2026-06-29 21:18:33 +08:00

26 lines
432 B
C#

namespace EventPartnerGather
{
public enum AutoMatchState
{
AutoMatchOff,
AutoMatchOn,
}
public class EventForAutoMatchChangeStage
{
public AutoMatchState State;
}
public class EventAutoMatchFailed
{
public string Reason;
}
public class EventTryCloseAutoMatch { }
public class EventTryCloseAutoMatchResult
{
public bool IsCanClose;
}
}