Client: Add sum and average to packetcounter

This commit is contained in:
sfan5
2020-05-15 15:12:37 +02:00
parent a9c3a42323
commit be38a44ffe
2 changed files with 14 additions and 3 deletions

View File

@@ -94,11 +94,12 @@ public:
m_packets.clear();
}
u32 sum() const;
void print(std::ostream &o) const;
private:
// command, count
std::map<u16, u16> m_packets;
std::map<u16, u32> m_packets;
};
class ClientScripting;