A simple airplane game was also made in the project.
• Airplane consists of 5 characters.
• Gun bullet consists of a single character.
• Enemy is square shaped.
• The plane only moves up and down.
What things you need to install the software and how to install them
//#include "pch.h"
#include <iostream>
#include <Windows.h>
#include <conio.h>
#include <time.h>
using namespace std;
const int mermi_sayisi_max = 100;
const int dusman_sayisi_max = 50;
const int dusman_uretme_araligi = 30;A step by step series of examples that tell you how to get a development env running
//ön yükleme ön hazırlık
void oyna();
void kaybettiniz();
void mermi_kontrol(Dusman*, Sahne*);
void ucak_kontrol(Ucak*, Sahne*);And repeat
int main()
{
srand(time(NULL));
Oynatici oynatici;
system("pause");
}