mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-12-05 08:09:03 +00:00
28 lines
513 B
C#
28 lines
513 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FunGameServer.Models.Config
|
|
{
|
|
public static class SocketEnums
|
|
{
|
|
public enum SendType
|
|
{
|
|
Login = 1,
|
|
CheckLogin = 2,
|
|
Logout = 3,
|
|
HeartBeat = 4,
|
|
}
|
|
|
|
public enum ReadType
|
|
{
|
|
Login = 1,
|
|
CheckLogin = 2,
|
|
Logout = 3,
|
|
HeartBeat = 4,
|
|
}
|
|
}
|
|
}
|