26 lines
432 B
C#
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;
|
|
}
|
|
}
|