예제 #1
0
 public static PlayerStatsPacket CreatePlayerStatsPacket(Ped ped)
 {
     return(new PlayerStatsPacket()
     {
         ElementId = ped.Id,
         Stats = ped.GetAllStats().ToDictionary(x => (ushort)x.Key, x => x.Value)
     });
 }