// A small change
#include<curses.h>
#include<unistd.h>
#include<string.h>
#include<stdlib.h>

#include "objects.hpp"

void mario() {
  Game G;
  
  // load world1, play the game if it loaded ok
  if (G.load_world("/u1/h0/jkinne/public_html/cs202-f2019/code/202games/cs20200/world1.txt")) {
    G.play_game();
  }
}