mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
23 lines
471 B
C++
23 lines
471 B
C++
#pragma once
|
|
|
|
class SendTable;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Server side class definition
|
|
//-----------------------------------------------------------------------------
|
|
class ServerClass
|
|
{
|
|
public:
|
|
const char* GetName(void) const
|
|
{
|
|
return m_pNetworkName;
|
|
}
|
|
|
|
public:
|
|
char* m_pNetworkName;
|
|
SendTable* m_pSendTable;
|
|
ServerClass* m_pNext;
|
|
int m_Unknown1;
|
|
int m_ClassID;
|
|
int m_InstanceBaselineIndex;
|
|
}; |