summaryrefslogtreecommitdiffstats
path: root/src/render/Glass.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/Glass.h')
-rw-r--r--src/render/Glass.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/render/Glass.h b/src/render/Glass.h
new file mode 100644
index 00000000..460c4548
--- /dev/null
+++ b/src/render/Glass.h
@@ -0,0 +1,11 @@
+#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);
+ static void Render(void);
+};