|
|
@@ -7,7 +7,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class HttpGetRouterResponse: MessageObject
|
|
|
{
|
|
|
- public static HttpGetRouterResponse Create(bool isFromPool = true)
|
|
|
+ public static HttpGetRouterResponse Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(HttpGetRouterResponse), isFromPool) as HttpGetRouterResponse;
|
|
|
}
|
|
|
@@ -33,7 +33,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class RouterSync: MessageObject
|
|
|
{
|
|
|
- public static RouterSync Create(bool isFromPool = true)
|
|
|
+ public static RouterSync Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(RouterSync), isFromPool) as RouterSync;
|
|
|
}
|
|
|
@@ -60,7 +60,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2M_TestRequest: MessageObject, ILocationRequest
|
|
|
{
|
|
|
- public static C2M_TestRequest Create(bool isFromPool = true)
|
|
|
+ public static C2M_TestRequest Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2M_TestRequest), isFromPool) as C2M_TestRequest;
|
|
|
}
|
|
|
@@ -86,7 +86,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_TestResponse: MessageObject, IResponse
|
|
|
{
|
|
|
- public static M2C_TestResponse Create(bool isFromPool = true)
|
|
|
+ public static M2C_TestResponse Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_TestResponse), isFromPool) as M2C_TestResponse;
|
|
|
}
|
|
|
@@ -121,7 +121,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2G_EnterMap: MessageObject, ISessionRequest
|
|
|
{
|
|
|
- public static C2G_EnterMap Create(bool isFromPool = true)
|
|
|
+ public static C2G_EnterMap Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2G_EnterMap), isFromPool) as C2G_EnterMap;
|
|
|
}
|
|
|
@@ -143,7 +143,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class G2C_EnterMap: MessageObject, ISessionResponse
|
|
|
{
|
|
|
- public static G2C_EnterMap Create(bool isFromPool = true)
|
|
|
+ public static G2C_EnterMap Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(G2C_EnterMap), isFromPool) as G2C_EnterMap;
|
|
|
}
|
|
|
@@ -178,7 +178,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class MoveInfo: MessageObject
|
|
|
{
|
|
|
- public static MoveInfo Create(bool isFromPool = true)
|
|
|
+ public static MoveInfo Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(MoveInfo), isFromPool) as MoveInfo;
|
|
|
}
|
|
|
@@ -208,7 +208,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class UnitInfo: MessageObject
|
|
|
{
|
|
|
- public static UnitInfo Create(bool isFromPool = true)
|
|
|
+ public static UnitInfo Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(UnitInfo), isFromPool) as UnitInfo;
|
|
|
}
|
|
|
@@ -254,7 +254,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_CreateUnits: MessageObject, IMessage
|
|
|
{
|
|
|
- public static M2C_CreateUnits Create(bool isFromPool = true)
|
|
|
+ public static M2C_CreateUnits Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_CreateUnits), isFromPool) as M2C_CreateUnits;
|
|
|
}
|
|
|
@@ -276,7 +276,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_CreateMyUnit: MessageObject, IMessage
|
|
|
{
|
|
|
- public static M2C_CreateMyUnit Create(bool isFromPool = true)
|
|
|
+ public static M2C_CreateMyUnit Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_CreateMyUnit), isFromPool) as M2C_CreateMyUnit;
|
|
|
}
|
|
|
@@ -298,7 +298,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_StartSceneChange: MessageObject, IMessage
|
|
|
{
|
|
|
- public static M2C_StartSceneChange Create(bool isFromPool = true)
|
|
|
+ public static M2C_StartSceneChange Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_StartSceneChange), isFromPool) as M2C_StartSceneChange;
|
|
|
}
|
|
|
@@ -324,7 +324,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_RemoveUnits: MessageObject, IMessage
|
|
|
{
|
|
|
- public static M2C_RemoveUnits Create(bool isFromPool = true)
|
|
|
+ public static M2C_RemoveUnits Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_RemoveUnits), isFromPool) as M2C_RemoveUnits;
|
|
|
}
|
|
|
@@ -346,7 +346,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2M_PathfindingResult: MessageObject, ILocationMessage
|
|
|
{
|
|
|
- public static C2M_PathfindingResult Create(bool isFromPool = true)
|
|
|
+ public static C2M_PathfindingResult Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2M_PathfindingResult), isFromPool) as C2M_PathfindingResult;
|
|
|
}
|
|
|
@@ -372,7 +372,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2M_Stop: MessageObject, ILocationMessage
|
|
|
{
|
|
|
- public static C2M_Stop Create(bool isFromPool = true)
|
|
|
+ public static C2M_Stop Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2M_Stop), isFromPool) as C2M_Stop;
|
|
|
}
|
|
|
@@ -394,7 +394,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_PathfindingResult: MessageObject, IMessage
|
|
|
{
|
|
|
- public static M2C_PathfindingResult Create(bool isFromPool = true)
|
|
|
+ public static M2C_PathfindingResult Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_PathfindingResult), isFromPool) as M2C_PathfindingResult;
|
|
|
}
|
|
|
@@ -424,7 +424,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_Stop: MessageObject, IMessage
|
|
|
{
|
|
|
- public static M2C_Stop Create(bool isFromPool = true)
|
|
|
+ public static M2C_Stop Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_Stop), isFromPool) as M2C_Stop;
|
|
|
}
|
|
|
@@ -459,7 +459,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2G_Ping: MessageObject, ISessionRequest
|
|
|
{
|
|
|
- public static C2G_Ping Create(bool isFromPool = true)
|
|
|
+ public static C2G_Ping Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2G_Ping), isFromPool) as C2G_Ping;
|
|
|
}
|
|
|
@@ -481,7 +481,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class G2C_Ping: MessageObject, ISessionResponse
|
|
|
{
|
|
|
- public static G2C_Ping Create(bool isFromPool = true)
|
|
|
+ public static G2C_Ping Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(G2C_Ping), isFromPool) as G2C_Ping;
|
|
|
}
|
|
|
@@ -515,7 +515,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class G2C_Test: MessageObject, ISessionMessage
|
|
|
{
|
|
|
- public static G2C_Test Create(bool isFromPool = true)
|
|
|
+ public static G2C_Test Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(G2C_Test), isFromPool) as G2C_Test;
|
|
|
}
|
|
|
@@ -534,7 +534,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2M_Reload: MessageObject, ISessionRequest
|
|
|
{
|
|
|
- public static C2M_Reload Create(bool isFromPool = true)
|
|
|
+ public static C2M_Reload Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2M_Reload), isFromPool) as C2M_Reload;
|
|
|
}
|
|
|
@@ -564,7 +564,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_Reload: MessageObject, ISessionResponse
|
|
|
{
|
|
|
- public static M2C_Reload Create(bool isFromPool = true)
|
|
|
+ public static M2C_Reload Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_Reload), isFromPool) as M2C_Reload;
|
|
|
}
|
|
|
@@ -595,7 +595,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2R_Login: MessageObject, ISessionRequest
|
|
|
{
|
|
|
- public static C2R_Login Create(bool isFromPool = true)
|
|
|
+ public static C2R_Login Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2R_Login), isFromPool) as C2R_Login;
|
|
|
}
|
|
|
@@ -625,7 +625,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class R2C_Login: MessageObject, ISessionResponse
|
|
|
{
|
|
|
- public static R2C_Login Create(bool isFromPool = true)
|
|
|
+ public static R2C_Login Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(R2C_Login), isFromPool) as R2C_Login;
|
|
|
}
|
|
|
@@ -668,7 +668,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2G_LoginGate: MessageObject, ISessionRequest
|
|
|
{
|
|
|
- public static C2G_LoginGate Create(bool isFromPool = true)
|
|
|
+ public static C2G_LoginGate Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2G_LoginGate), isFromPool) as C2G_LoginGate;
|
|
|
}
|
|
|
@@ -698,7 +698,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class G2C_LoginGate: MessageObject, ISessionResponse
|
|
|
{
|
|
|
- public static G2C_LoginGate Create(bool isFromPool = true)
|
|
|
+ public static G2C_LoginGate Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(G2C_LoginGate), isFromPool) as G2C_LoginGate;
|
|
|
}
|
|
|
@@ -732,7 +732,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class G2C_TestHotfixMessage: MessageObject, ISessionMessage
|
|
|
{
|
|
|
- public static G2C_TestHotfixMessage Create(bool isFromPool = true)
|
|
|
+ public static G2C_TestHotfixMessage Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(G2C_TestHotfixMessage), isFromPool) as G2C_TestHotfixMessage;
|
|
|
}
|
|
|
@@ -755,7 +755,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2M_TestRobotCase: MessageObject, ILocationRequest
|
|
|
{
|
|
|
- public static C2M_TestRobotCase Create(bool isFromPool = true)
|
|
|
+ public static C2M_TestRobotCase Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2M_TestRobotCase), isFromPool) as C2M_TestRobotCase;
|
|
|
}
|
|
|
@@ -781,7 +781,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_TestRobotCase: MessageObject, ILocationResponse
|
|
|
{
|
|
|
- public static M2C_TestRobotCase Create(bool isFromPool = true)
|
|
|
+ public static M2C_TestRobotCase Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_TestRobotCase), isFromPool) as M2C_TestRobotCase;
|
|
|
}
|
|
|
@@ -815,7 +815,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2M_TestRobotCase2: MessageObject, ILocationMessage
|
|
|
{
|
|
|
- public static C2M_TestRobotCase2 Create(bool isFromPool = true)
|
|
|
+ public static C2M_TestRobotCase2 Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2M_TestRobotCase2), isFromPool) as C2M_TestRobotCase2;
|
|
|
}
|
|
|
@@ -841,7 +841,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_TestRobotCase2: MessageObject, ILocationMessage
|
|
|
{
|
|
|
- public static M2C_TestRobotCase2 Create(bool isFromPool = true)
|
|
|
+ public static M2C_TestRobotCase2 Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_TestRobotCase2), isFromPool) as M2C_TestRobotCase2;
|
|
|
}
|
|
|
@@ -868,7 +868,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2M_TransferMap: MessageObject, ILocationRequest
|
|
|
{
|
|
|
- public static C2M_TransferMap Create(bool isFromPool = true)
|
|
|
+ public static C2M_TransferMap Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2M_TransferMap), isFromPool) as C2M_TransferMap;
|
|
|
}
|
|
|
@@ -890,7 +890,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class M2C_TransferMap: MessageObject, ILocationResponse
|
|
|
{
|
|
|
- public static M2C_TransferMap Create(bool isFromPool = true)
|
|
|
+ public static M2C_TransferMap Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(M2C_TransferMap), isFromPool) as M2C_TransferMap;
|
|
|
}
|
|
|
@@ -921,7 +921,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class C2G_Benchmark: MessageObject, ISessionRequest
|
|
|
{
|
|
|
- public static C2G_Benchmark Create(bool isFromPool = true)
|
|
|
+ public static C2G_Benchmark Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(C2G_Benchmark), isFromPool) as C2G_Benchmark;
|
|
|
}
|
|
|
@@ -943,7 +943,7 @@ namespace ET
|
|
|
[MemoryPackable]
|
|
|
public partial class G2C_Benchmark: MessageObject, ISessionResponse
|
|
|
{
|
|
|
- public static G2C_Benchmark Create(bool isFromPool = true)
|
|
|
+ public static G2C_Benchmark Create(bool isFromPool = false)
|
|
|
{
|
|
|
return ObjectPool.Instance.Fetch(typeof(G2C_Benchmark), isFromPool) as G2C_Benchmark;
|
|
|
}
|