mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 20:49:33 +08:00
15 lines
311 B
C#
15 lines
311 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Base
|
|
{
|
|
public interface ISocketHeartBeat
|
|
{
|
|
public int HeartBeatFaileds { get; }
|
|
public bool SendingHeartBeat { get; }
|
|
}
|
|
}
|