Advertisement
venik2405

course.main

Dec 20th, 2021
983
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include "Game.h"
  2. #include <ctime>
  3.  
  4. int main() {
  5.     srand(static_cast<unsigned>(time(0)));
  6.     Game game;
  7.     game.run();
  8.  
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement