forked from Lanliner/Path-to-Archdragon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
40 lines (37 loc) · 677 Bytes
/
Copy pathmain.cpp
File metadata and controls
40 lines (37 loc) · 677 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
32
33
34
35
36
37
38
39
40
#include <iostream>
#include <cmath>
#include <cstdio>
#include <conio.h>
#include <cstring>
#include <queue>
#include <stdlib.h>
#include <time.h>
#include <windows.h>
#include <Mmsystem.h>
#include "body.cpp"
using namespace std;
int main()
{
system("color F0");
Color(16);
CursorVisible(0);
LoadTips();
LoadConversation();
LoadDescription();
LoadMonster();
mapinput();
while(true)
{
Title();
player.atk=80;
player.def=8;
player.skill[3]=10;
player.skill[4]=3;
srand(time(NULL));
PlayMapInit();
BuildMap(1);
Play(3);
mapdecide();
}
return 0;
}