-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.cpp
More file actions
31 lines (28 loc) · 863 Bytes
/
tests.cpp
File metadata and controls
31 lines (28 loc) · 863 Bytes
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
#include "random.hpp"
#include "magic_enum.hpp"
#include "thirdParty/nicknameGenerator/dasmig/nicknamegen.hpp"
#include "countryChoiceFunctions.hpp"
#include "player.hpp"
#include "coach.hpp"
#include "team.hpp"
//arrumar draft para uma função
//arrumar saida dos nomes dos paises
//adicionar team como atributo de player e coach
//fazer calculo dos atributos
//criar enum de traits
//arrumar espaços fora da visão
//arrumar algoritmo do draft
//aprender usar date.h
//criar time para free agents
int main()
{
dasmig::ng::instance().load("thirdParty/nameGenerator/resources");
dasmig::nng::instance().load("thirdParty/nicknameGenerator/resources");
std::vector <r3d::team> test = r3d::createTeamsVector(100);
for (int i = 0; i < 100; i++)
{
test.at(i).showInformation();
std::wcout << std::endl;
}
return 0; //Primeiro teste 5,847s 24mb ram 8% cpu
}