mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 04:29:36 +08:00
119 lines
1.4 KiB
C#
119 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface
|
|
{
|
|
public interface IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IConnectEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IDisconnectEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface ILoginEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface ILogoutEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IRegEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IIntoRoomEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface ISendTalkEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface ICreateRoomEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IQuitRoomEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IChangeRoomSettingEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IStartMatchEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IStartGameEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IChangeProfileEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IChangeAccountSettingEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IOpenStockEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface ISignInEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IOpenStoreEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IBuyItemEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IShowRankingEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IUseItemEvent : IEvent
|
|
{
|
|
|
|
}
|
|
|
|
public interface IEndGameEvent : IEvent
|
|
{
|
|
|
|
}
|
|
}
|