repo.or.cz
/
Projeto-PCG.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Estava rotacionando pelo angulo errado.
[Projeto-PCG.git]
/
plataform.h
blob
78639f6fb0a1da814465dc184c8d4183c588ae53
1
#ifndef PLATAFORM_H
2
#define PLATAFORM_H
3
4
#include
"geometry.h"
5
6
class
Plataform
{
7
private
:
8
Linha line
;
9
bool
passable
;
10
public
:
11
Plataform
(
Linha aline
);
12
Linha
getLine
() {
return
line
;};
13
bool
isPassable
();
14
void
setPassable
() {
passable
=
true
;}
15
void
desenha
();
16
};
17
18
#endif