Initial MSVC 2008 projects workspace
This commit is contained in:
15
L2C_Server/net/GameClient/GameClientNetStats.h
Normal file
15
L2C_Server/net/GameClient/GameClientNetStats.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
class GameClientNetStats
|
||||
{
|
||||
public:
|
||||
GameClientNetStats();
|
||||
void clear();
|
||||
void addSentPacket( unsigned long long len );
|
||||
void addRcvdPacket( unsigned long long len );
|
||||
public:
|
||||
unsigned long long ullPacketsSent;
|
||||
unsigned long long ullBytesSent;
|
||||
unsigned long long ullPacketsRcvd;
|
||||
unsigned long long ullBytesRcvd;
|
||||
};
|
Reference in New Issue
Block a user