You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
334 B
C

12 months ago
#pragma once
#include "CBaseFlex.h"
#include "CCSPlayerPawn.h"
#include "schemasystem.h"
class CBaseGrenade : public CBaseFlex
{
public:
SCHEMA_FIELD(CHandle<CCSPlayerPawn>, CBaseGrenade, m_hThrower);
};
class CCSWeaponBase : public CBasePlayerWeapon
{
public:
SCHEMA_FIELD(CHandle<CCSPlayerPawn>, CCSWeaponBase, m_hPrevOwner);
};