r5sdk/r5dev/tier1/NetKey.cpp
Kawe Mazidjatari 9f428f1567 Move tier0 lib headers to public
This commit does not change any logic or behavior of the code.
2023-04-06 23:50:48 +02:00

16 lines
579 B
C++

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