Skip to content
Permalink
82921180e8
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
18 lines (15 sloc) 249 Bytes
#pragma once
#include <string>
#include "Player.h"
#include "map.h"
using namespace std;
class GameSystem
{
public:
GameSystem(string mapFileName);
void startGame();
void playerMove();
private:
Map _map;
Player _player;
};