mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
9 lines
242 B
C#
9 lines
242 B
C#
namespace ET
|
||
{
|
||
// 刚accept的session只持续5秒,必须通过验证,否则断开
|
||
[ComponentOf(typeof(Session))]
|
||
public class SessionAcceptTimeoutComponent: Entity, IAwake, IDestroy
|
||
{
|
||
public long Timer;
|
||
}
|
||
} |