!B (CE-20767) Enabled opaque rendering and shadows for GPU particles. Added ZPassGPU...
[CRYENGINE.git] / Code / CryEngine / CryNetwork / NetDebugServerInfo.h
blob412677db27c24d985fcf9757c4af7861273f2e90
1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
3 #ifndef __NETDEBUGSERVERINFO_H__
4 #define __NETDEBUGSERVERINFO_H__
6 #pragma once
8 #include "Config.h"
10 #if ENABLE_NET_DEBUG_INFO
12 #include "NetDebugInfo.h"
14 class CNetDebugServerInfo : public CNetDebugInfoSection, public INetDumpLogger
16 public:
17 CNetDebugServerInfo();
18 virtual ~CNetDebugServerInfo();
20 // CNetDebugInfoSection
21 virtual void Tick(const SNetworkProfilingStats* const pProfilingStats);
22 virtual void Draw(const SNetworkProfilingStats* const pProfilingStats);
23 // ~CNetDebugInfoSection
25 // INetDumpLogger
26 virtual void Log(const char* pFmt, ...);
27 //~INetDumpLogger
29 private:
31 uint32 m_line;
34 #endif // ENABLE_NET_DEBUG_INFO
36 #endif