File: main.cc

package info (click to toggle)
groundhog 1.1-8
  • links: PTS
  • area: main
  • in suites: potato
  • size: 320 kB
  • ctags: 327
  • sloc: cpp: 1,816; makefile: 106; sh: 18
file content (12 lines) | stat: -rwxr-xr-x 135 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#include "game.h"

int
main(int argc, char** argv)
{
   Game game(argc, argv);

   game.Build();
   game.Shuffle();
   
   return 0;
}