2019-01-21 02:00:14 +00:00
|
|
|
/***
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
|
|
|
|
*
|
|
|
|
* See the file LICENSE attached with the sources for usage details.
|
|
|
|
*
|
|
|
|
****/
|
|
|
|
|
2019-01-19 04:50:25 +00:00
|
|
|
// Impact types
|
2019-01-21 02:00:14 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
IMPACT_MELEE,
|
|
|
|
IMPACT_EXPLOSION,
|
|
|
|
IMPACT_DEFAULT,
|
|
|
|
IMPACT_GLASS,
|
|
|
|
IMPACT_WOOD,
|
|
|
|
IMPACT_METAL,
|
2019-01-19 04:50:25 +00:00
|
|
|
IMPACT_FLESH,
|
2019-01-21 02:00:14 +00:00
|
|
|
IMPACT_ROCK
|
2019-01-19 04:50:25 +00:00
|
|
|
};
|