Advertisement
Guest User

Untitled

a guest
Aug 15th, 2012
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include <ctime>
  3. #include <conio.h>
  4. #include "gameboard.h"
  5. #include "hero.h"
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10.  
  11.     gameboard board;
  12.  
  13.     board.draw();
  14.     board.show();
  15.  
  16.     person p1;
  17.     p1.move();
  18.     board.show();
  19.  
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement