-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvasores.h
44 lines (37 loc) · 855 Bytes
/
Invasores.h
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
/*
* File: Invasores.h
* Author: thiago
*
* Created on 18 de Setembro de 2015, 17:37
*/
#ifndef INVASORES_H
#define INVASORES_H
#include "Asteroide.h"
class Invasores{
protected:
static int id;
int inc;
int numAsteroides;
Asteroide * oAsteroide;
public:
Invasores(){
numAsteroides = 1;
oAsteroide = new Asteroide[numAsteroides];
for(int i = 0; i < numAsteroides; i++){
oAsteroide[i].inicializa(id);
id++;
}
}
void desenha(){
for(int i = 0; i < numAsteroides; i++){
oAsteroide[i].desenha(20, 300, 300);
}
}
void moveAsteroides(){
for(int i = 0; i < numAsteroides; i++){
oAsteroide[i].move();
}
}
};
int Invasores::id = 0;
#endif /* INVASORES_H */