Skip to content
Permalink
8ac1676b2c
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
23 lines (16 sloc) 312 Bytes
#ifndef GAME
#define GAME
#include <iostream>
#include "map.h"
#include "player.h"
#include "enemy.h"
#include <stdlib.h>
class Game{
public:
Map level;
Player player;
std::vector<Enemy> enemies;
Game(Player player_obj);
void game_loop(std::string map_file);
};
#endif