Make inline

Make them inline as these are just single member getters/setters.
This commit is contained in:
Kawe Mazidjatari 2023-06-18 22:06:25 +02:00
parent b7cf2c6f64
commit d5039de251

View File

@ -26,11 +26,11 @@ public:
static bool StaticCreate(CModAppSystemGroup* pModAppSystemGroup);
static void InitPluginSystem(CModAppSystemGroup* pModAppSystemGroup);
bool IsServerOnly(void) const
inline bool IsServerOnly(void) const
{
return m_bServerOnly;
}
void SetServerOnly(void)
inline void SetServerOnly(void)
{
m_bServerOnly = true;
}