-
Notifications
You must be signed in to change notification settings - Fork 0
/
Knowledge.h
55 lines (39 loc) · 1014 Bytes
/
Knowledge.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
43
44
45
46
47
48
49
50
51
52
53
54
55
#pragma once
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <iostream>
#include <ctime>
#include <fstream>
#include "Prisoner.h"
// Stale mowioce o dacie
#define YEAR 360
#define MONTH 30
#define DAY 1
// Klasa Wiezienia
class Knowledge{
private:
//static std::vector <string> names ;
//Zmienna przechowujaca nam czas
static long long int _currentTime;
//Zmienna przechowujaca lata odsiatki
static int _currentAge ;
public:
static void nameFile();
static void tick() { _currentTime++; }
// Genatory
//static string name();
// Generuje imie Wieznia
static float chanceToFailure( );
// Funkcja dodajac kolejny dzien
// static void tick() { _currentTime++; }
// Funkcja zwracajaca czas w wiezieniu
static float chanceToDie();
// Akcesory
static long long int currentTime() { return _currentTime; }
//Zmiena zwracajaca rok odsiatki
static int checkAge() { return _currentAge; }
//Funkcja dodaje rok
static void newYear();
};