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
Armas agora sao carregadas de lua
[Projeto-PCG.git]
/
platform.h
blob
791b358f796336256723fb71bed8680ae5ccfe7e
1
#ifndef PLATAFORM_H
2
#define PLATAFORM_H
3
4
#include
"geometry.h"
5
6
class
Platform
{
7
private
:
8
Linha line
;
9
bool
passable
;
10
public
:
11
Platform
(
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