|
@@ -130,6 +130,18 @@ namespace ET
|
|
|
|
|
|
}
|
|
|
|
|
|
+ [Message(OuterMessage.IntKV)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class IntKV: ProtoObject
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int Key { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public long Value { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
[Message(OuterMessage.UnitInfo)]
|
|
|
[ProtoContract]
|
|
|
public partial class UnitInfo: ProtoObject
|
|
@@ -149,9 +161,9 @@ namespace ET
|
|
|
[ProtoMember(5)]
|
|
|
public Unity.Mathematics.float3 Forward { get; set; }
|
|
|
|
|
|
- [MongoDB.Bson.Serialization.Attributes.BsonDictionaryOptions(MongoDB.Bson.Serialization.Options.DictionaryRepresentation.ArrayOfArrays)]
|
|
|
[ProtoMember(6)]
|
|
|
- public Dictionary<int, long> KV { get; set; }
|
|
|
+ public List<IntKV> KV { get; set; }
|
|
|
+
|
|
|
[ProtoMember(7)]
|
|
|
public MoveInfo MoveInfo { get; set; }
|
|
|
|
|
@@ -490,30 +502,31 @@ namespace ET
|
|
|
public const ushort C2G_EnterMap = 10008;
|
|
|
public const ushort G2C_EnterMap = 10009;
|
|
|
public const ushort MoveInfo = 10010;
|
|
|
- public const ushort UnitInfo = 10011;
|
|
|
- public const ushort M2C_CreateUnits = 10012;
|
|
|
- public const ushort M2C_CreateMyUnit = 10013;
|
|
|
- public const ushort M2C_StartSceneChange = 10014;
|
|
|
- public const ushort M2C_RemoveUnits = 10015;
|
|
|
- public const ushort C2M_PathfindingResult = 10016;
|
|
|
- public const ushort C2M_Stop = 10017;
|
|
|
- public const ushort M2C_PathfindingResult = 10018;
|
|
|
- public const ushort M2C_Stop = 10019;
|
|
|
- public const ushort C2G_Ping = 10020;
|
|
|
- public const ushort G2C_Ping = 10021;
|
|
|
- public const ushort G2C_Test = 10022;
|
|
|
- public const ushort C2M_Reload = 10023;
|
|
|
- public const ushort M2C_Reload = 10024;
|
|
|
- public const ushort C2R_Login = 10025;
|
|
|
- public const ushort R2C_Login = 10026;
|
|
|
- public const ushort C2G_LoginGate = 10027;
|
|
|
- public const ushort G2C_LoginGate = 10028;
|
|
|
- public const ushort G2C_TestHotfixMessage = 10029;
|
|
|
- public const ushort C2M_TestRobotCase = 10030;
|
|
|
- public const ushort M2C_TestRobotCase = 10031;
|
|
|
- public const ushort C2M_TransferMap = 10032;
|
|
|
- public const ushort M2C_TransferMap = 10033;
|
|
|
- public const ushort C2G_Benchmark = 10034;
|
|
|
- public const ushort G2C_Benchmark = 10035;
|
|
|
+ public const ushort IntKV = 10011;
|
|
|
+ public const ushort UnitInfo = 10012;
|
|
|
+ public const ushort M2C_CreateUnits = 10013;
|
|
|
+ public const ushort M2C_CreateMyUnit = 10014;
|
|
|
+ public const ushort M2C_StartSceneChange = 10015;
|
|
|
+ public const ushort M2C_RemoveUnits = 10016;
|
|
|
+ public const ushort C2M_PathfindingResult = 10017;
|
|
|
+ public const ushort C2M_Stop = 10018;
|
|
|
+ public const ushort M2C_PathfindingResult = 10019;
|
|
|
+ public const ushort M2C_Stop = 10020;
|
|
|
+ public const ushort C2G_Ping = 10021;
|
|
|
+ public const ushort G2C_Ping = 10022;
|
|
|
+ public const ushort G2C_Test = 10023;
|
|
|
+ public const ushort C2M_Reload = 10024;
|
|
|
+ public const ushort M2C_Reload = 10025;
|
|
|
+ public const ushort C2R_Login = 10026;
|
|
|
+ public const ushort R2C_Login = 10027;
|
|
|
+ public const ushort C2G_LoginGate = 10028;
|
|
|
+ public const ushort G2C_LoginGate = 10029;
|
|
|
+ public const ushort G2C_TestHotfixMessage = 10030;
|
|
|
+ public const ushort C2M_TestRobotCase = 10031;
|
|
|
+ public const ushort M2C_TestRobotCase = 10032;
|
|
|
+ public const ushort C2M_TransferMap = 10033;
|
|
|
+ public const ushort M2C_TransferMap = 10034;
|
|
|
+ public const ushort C2G_Benchmark = 10035;
|
|
|
+ public const ushort G2C_Benchmark = 10036;
|
|
|
}
|
|
|
}
|