diff options
Diffstat (limited to 'game/shared/groundlink.h')
| -rw-r--r-- | game/shared/groundlink.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/game/shared/groundlink.h b/game/shared/groundlink.h new file mode 100644 index 0000000..9c04861 --- /dev/null +++ b/game/shared/groundlink.h @@ -0,0 +1,23 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// + +#ifndef GROUNDLINK_H +#define GROUNDLINK_H +#ifdef _WIN32 +#pragma once +#endif + +//----------------------------------------------------------------------------- +// Purpose: Used for tracking many to one ground entity chains ( many ents can share a single ground entity ) +//----------------------------------------------------------------------------- +struct groundlink_t +{ + EHANDLE entity; + groundlink_t *nextLink; + groundlink_t *prevLink; +}; + +#endif // GROUNDLINK_H |