render -> renderer (original name)

This commit is contained in:
Sergeanur
2021-07-18 00:03:57 +03:00
parent c8cb1ed013
commit c937bdbfea
77 changed files with 6 additions and 6 deletions

25
src/renderer/Antennas.h Normal file
View File

@@ -0,0 +1,25 @@
#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);
};