From a7e673c2ec6a5ed25f3bae8caab90e2113158c03 Mon Sep 17 00:00:00 2001 From: Nikolay Korolev Date: Sat, 24 Jul 2021 00:47:04 +0300 Subject: sync --- src/render/WaterCannon.h | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/render/WaterCannon.h (limited to 'src/render/WaterCannon.h') diff --git a/src/render/WaterCannon.h b/src/render/WaterCannon.h deleted file mode 100644 index a37bdd12..00000000 --- a/src/render/WaterCannon.h +++ /dev/null @@ -1,39 +0,0 @@ -#pragma once - -#define WATERCANNON_GRAVITY (0.009f) -#define WATERCANNON_LIFETIME (150) - -class CWaterCannon -{ -public: - enum - { - NUM_SEGMENTPOINTS = 16, - }; - - int32 m_nId; - int16 m_nCur; - uint32 m_nTimeCreated; - CVector m_avecPos[NUM_SEGMENTPOINTS]; - CVector m_avecVelocity[NUM_SEGMENTPOINTS]; - bool m_abUsed[NUM_SEGMENTPOINTS]; - - void Init(void); - void Update_OncePerFrame(int16 index); - void Update_NewInput(CVector *pos, CVector *dir); - void Render(void); - void PushPeds(void); -}; - -VALIDATE_SIZE(CWaterCannon, 412); - -class CWaterCannons -{ -public: - static CWaterCannon aCannons[NUM_WATERCANNONS]; - - static void Init(void); - static void UpdateOne(uint32 id, CVector *pos, CVector *dir); - static void Update(); - static void Render(void); -}; \ No newline at end of file -- cgit v1.2.3