forked from INF112-Programacao2/20202-team-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jogador.h
42 lines (34 loc) · 811 Bytes
/
Jogador.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
#ifndef INF112_JOGADOR_H
#define INF112_JOGADOR_H
#include <iostream>
#include "JogadorException.h"
class Jogador
{
private:
int _id, _quantidadeDinheiro, _posicao;
int _preso;
std::string _nome, _path;
public:
//Construtor
Jogador(int id, int quantidadeDinheiro, std::string nome, int posicao, std::string path);
//Setters
void set_id(int id);
void set_quantidadeDinheiro(int quantidadeDinheiro);
void set_nome(int nome);
void set_posicao(int posicao);
void set_path(int path);
void set_preso(int i);
//Getters
int get_id();
int get_quantidadeDinheiro();
std::string get_nome();
int get_posicao();
std::string get_path();
int get_preso();
//Outros metodos
void receber_dinheiro(int quantidade);
void pagar(int quantidade) throw(ExcecaoJogador);
//Destrutor
~Jogador();
};
#endif