-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameObject.cpp
46 lines (40 loc) · 878 Bytes
/
GameObject.cpp
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
37
38
39
40
41
42
43
44
45
46
/**************************************************************************
** Qt Creator license header template
** Special keywords: dpinol 08/03/2014 2014
** Environment variables:
** To protect a percent sign, use '%'.
**************************************************************************/
#include "GameObject.h"
#include <utils/Effect.h>
GameObject::GameObject() : m_pixel(0,0),
m_velocity(0,0),
m_acceleration(0,0),
m_width(0),
m_height(0),
m_currentRow(0),
m_currentFrame(0),
m_bUpdating(false),
m_bDead(false),
m_bDying(false),
m_dyingTime(0),
m_dyingCounter(0),
m_angle(0),
m_alpha(255),
m_effects(new dani::CompositeEffect)
{
}
GameObject::~GameObject()
{
}
void GameObject::draw()
{
m_effects->render();
}
void GameObject::update()
{
m_effects->update();
}
void GameObject::clean()
{
m_effects->clearChildren();
}