
Untitled
By: a guest on
Aug 15th, 2012 | syntax:
C++ | size: 0.27 KB | hits: 37 | expires: Never
#include <iostream>
#include <ctime>
#include <conio.h>
#include "gameboard.h"
#include "hero.h"
using namespace std;
int main()
{
gameboard board;
board.draw();
board.show();
person p1;
p1.move();
board.show();
return 0;
}