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
Atributo bypass movido para a classe Thing
[Projeto-PCG.git]
/
plataform.h
blob
300b8079036eb41a0918ff2c81bb295f17fa769f
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
,
bool
pass
);
12
Linha
getLine
() {
return
line
;};
13
bool
isPassable
() {
return
passable
;};
14
void
setPassable
() {
passable
=
true
;}
15
void
desenha
();
16
};
17
18
#endif