This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2020-08-04 13:13:01 -04:00

25 lines
729 B
C

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef NPC_ROLLERMINE_H
#define NPC_ROLLERMINE_H
#ifdef _WIN32
#pragma once
#endif
//------------------------------------
// Spawnflags
//------------------------------------
#define SF_ROLLERMINE_FRIENDLY (1 << 16)
#define SF_ROLLERMINE_PROP_COLLISION (1 << 17)
bool NPC_Rollermine_IsRollermine(CBaseEntity *pEntity);
CBaseEntity *NPC_Rollermine_DropFromPoint(const Vector &originStart,
CBaseEntity *pOwner,
const char *pszTemplate);
#endif // NPC_ROLLERMINE_H