- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
Latest commit
27 lines (23 loc) · 466 Bytes
/
Copy pathmain.cpp
File metadata and controls
27 lines (23 loc) · 466 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
#include<iostream>
#include"Player.h"
#include"God.h"
#include"Mafia.h"
#include"Citizen.h"
#include"Dacoit.h"
#include"Detective.h"
#include"Healer.h"
#include"GameMgr.h"
#include"DayNightMgr.h"
#include"DetectionMgr.h"
#include"HealingMgr.h"
#include"KillingMgr.h"
#include"SleepAwakeMgr.h"
#include"VotingMgr.h"
usingnamespacestd;
intmain()
{
God *my_god = newGod(0);
GameMgr gm_mgr(my_god);
gm_mgr.StartGame();
return0;
}