#ifndef MAIN_H
#define MAIN_H

#include "map.h"
#include "player.h"

const int NUM_PLAYERS = 2;
extern map* m;
extern player* playas[];

#endif
