My Project
tijolo.h
Go to the documentation of this file.
1 #pragma once
2 
8 class tijolo{
9  private:
10  int x,y;
11  int h, w;
12  float w_mult=2, h_mult=0.5;
13  int color;
15  public:
16  tijolo(int x_, int y_);
17  int getX();
18  int getY();
19  int getW();
20  int getH();
21  float getWmult();
22  float getHmult();
23  void setW(int w_);
24  void setH(int h_);
25  void setX(int x_);
26  void setY(int y_);
27 };
28 
int color
Definition: tijolo.h:13
float getWmult()
Definition: tijolo.cpp:13
void setX(int x_)
Definition: tijolo.cpp:16
float getHmult()
Definition: tijolo.cpp:12
int getH()
Definition: tijolo.cpp:11
int w
Definition: tijolo.h:11
tijolo(int x_, int y_)
Definition: tijolo.cpp:3
float w_mult
Definition: tijolo.h:12
Classe para os pontos.
Definition: tijolo.h:8
int getY()
Definition: tijolo.cpp:9
int getW()
Definition: tijolo.cpp:10
void setH(int h_)
Definition: tijolo.cpp:15
int h
Definition: tijolo.h:11
int x
Definition: tijolo.h:10
int getX()
Definition: tijolo.cpp:8
void setY(int y_)
Definition: tijolo.cpp:17
int y
Definition: tijolo.h:10
float h_mult
Definition: tijolo.h:12
void setW(int w_)
Definition: tijolo.cpp:14