Skip to content
Permalink
master
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
#include <iostream>
#include <string>
#include "time.h"
<<<<<<< HEAD
#include "game.cpp"
int main(void)
{
srand(time(NULL)); /* This line generates a new seed for the random library by using the current system time. Created by Jakub Filipiak. */
Game game; /* Generates a new game object. */
game.run(); /* Starts the game. */
=======
#include "game.h"
#include <memory>
using namespace std;
int main(void)
{
srand(time(NULL));
Game game;
game.run();
>>>>>>> eea4137c94972ad5ffc5c09eab0ecae6ee4071ba
system("pause");
return 0;
}