summaryrefslogtreecommitdiffstats
path: root/src/render/Antennas.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/Antennas.h')
-rw-r--r--src/render/Antennas.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/render/Antennas.h b/src/render/Antennas.h
deleted file mode 100644
index 47cb1dad..00000000
--- a/src/render/Antennas.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#pragma once
-
-class CAntenna
-{
-public:
- bool active;
- bool updatedLastFrame;
- uint32 id;
- float segmentLength;
- CVector pos[6];
- CVector speed[6];
-
- void Update(CVector dir, CVector pos);
-};
-
-class CAntennas
-{
- // no need to use game's array
- static CAntenna aAntennas[NUMANTENNAS];
-public:
- static void Init(void);
- static void Update(void);
- static void RegisterOne(uint32 id, CVector dir, CVector position, float length);
- static void Render(void);
-};