mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
29 lines
556 B
C
29 lines
556 B
C
|
//====== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. =======//
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================//
|
|||
|
|
|||
|
#ifndef ENGINE_ICOLLIDEABLE_H
|
|||
|
#define ENGINE_ICOLLIDEABLE_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
#include "tier0/platform.h"
|
|||
|
|
|||
|
class IHandleEntity;
|
|||
|
|
|||
|
abstract_class ICollideable
|
|||
|
{
|
|||
|
public:
|
|||
|
// Gets at the entity handle associated with the collideable
|
|||
|
virtual IHandleEntity* GetEntityHandle() {};// = 0;
|
|||
|
|
|||
|
// TODO!!!
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
#endif // ENGINE_ICOLLIDEABLE_H
|