You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
234 B

namespace ET
{
[ComponentOf(typeof(Session))]
public class PingComponent: Entity, IAwake, IDestroy
{
[NoMemoryCheck]
public C2G_Ping C2G_Ping = new C2G_Ping();
public long Ping; //延迟值
}
}