CWorld complete

This commit is contained in:
saml1er
2020-04-17 03:20:34 +05:00
parent e52a02fb9e
commit 6b1093f1c8
3 changed files with 133 additions and 23 deletions

View File

@ -496,4 +496,11 @@ IsExplosiveThingModel(int16 id)
{
return id == MI_EXPLODINGBARREL ||
id == MI_PETROLPUMP;
}
inline bool
IsFence(int16 id)
{
return id == MI_FENCE ||
id == MI_FENCE2;
}