diff options
Diffstat (limited to 'src/Glass.h')
-rw-r--r-- | src/Glass.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Glass.h b/src/Glass.h new file mode 100644 index 00000000..5347467b --- /dev/null +++ b/src/Glass.h @@ -0,0 +1,10 @@ +#pragma once + +class CEntity; + +class CGlass +{ +public: + static void WindowRespondsToCollision(CEntity *ent, float amount, CVector speed, CVector point, bool foo); + static void WindowRespondsToSoftCollision(CEntity *ent, float amount); +}; |