mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-21 19:49:34 +08:00

* 添加大量新的枚举,添加缺少的枚举字符串,修改枚举转字符串方法的位置 * 添加StartGame和Gaming的SocketHandler方法 * 添加MainInvokeType.StartGame * 优化代码格式 * 添加默认的User.ToString() * 添加EndGame * 添加GameMode.GetTypeString * 添加GameMode.GetRoomType
10 lines
235 B
C#
10 lines
235 B
C#
namespace Milimoe.FunGame.Core.Interface.Base
|
|
{
|
|
public interface IMailSender
|
|
{
|
|
public string SenderMailAddress { get; }
|
|
public string SenderName { get; }
|
|
public string SenderPassword { get; }
|
|
}
|
|
}
|