blob: 0515f646d305b5fb7bcef75f1f6c11256a22efe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#ifndef GAME_CLIENT_COMPONENTS_DAMAGEIND_H
#define GAME_CLIENT_COMPONENTS_DAMAGEIND_H
#include <base/vmath.h>
#include <game/client/component.h>
class CDamageInd : public CComponent
{
int64 m_Lastupdate;
struct CItem
{
vec2 m_Pos;
vec2 m_Dir;
float m_Life;
float m_StartAngle;
};
enum
{
MAX_ITEMS=64,
};
CItem m_aItems[MAX_ITEMS];
int m_NumItems;
CItem *CreateI();
void DestroyI(CItem *i);
public:
CDamageInd();
void Create(vec2 Pos, vec2 Dir);
virtual void OnRender();
};
#endif
|