r5sdk/r5dev/tier1/NetKey.cpp
Kawe Mazidjatari d809a9f633 Use PCH generated from VPC globally
This reduced output code size with 40KiB, improved compile times and appeared to improve runtime performance as well.
2023-05-14 02:10:17 +02:00

15 lines
554 B
C++

//===========================================================================//
//
// Purpose: implementation of the CNetKey class.
// --------------------------------------------------------------------------
//===========================================================================//
#include "tier1/NetKey.h"
//////////////////////////////////////////////////////////////////////
// Get key as Base64.
//////////////////////////////////////////////////////////////////////
const char* CNetKey::GetBase64NetKey(void) const
{
return m_szBase64;
}