diff options
Diffstat (limited to 'public/shattersurfacetypes.h')
| -rw-r--r-- | public/shattersurfacetypes.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/public/shattersurfacetypes.h b/public/shattersurfacetypes.h new file mode 100644 index 0000000..eb5c55b --- /dev/null +++ b/public/shattersurfacetypes.h @@ -0,0 +1,21 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +//=============================================================================// +#if !defined ( SHATTERSURFACETYPES_H ) +#define SHATTERSURFACETYPES_H +#ifdef _WIN32 +#pragma once +#endif + +enum ShatterSurface_t +{ + // Note: This much match with the client entity + SHATTERSURFACE_GLASS = 0, + SHATTERSURFACE_TILE = 1, +}; + +#endif |