Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#pragma once
#include <iostream>
#include "GAME_OVER.h"
int player_run(){
std::string pathInp_;
std::cout << "you got a path to choose from, X or Z" << std::endl;
std::cout << "CHOOSE ONE, lets see if you survive :" << "\n";
std::cin >> pathInp_;
if(pathInp_ == "x" || "X" || "z" || "Z"){
game_ov();
}
return 0;
}