campo-sirio/sc/sc0.cpp
guy dfcef6b5b5 Patch level : 10.0
Files correlati     : sc0
Ricompilazione Demo : [ ]
Commento            :
Nuovo pareggio partite


git-svn-id: svn://10.65.10.50/branches/R_10_00@22604 c028cbd2-c16b-5b4b-a496-9718f37d4682
2012-03-09 15:47:08 +00:00

15 lines
350 B
C++
Executable File

#include <xvt.h>
#include "sc0.h"
int main(int argc, char** argv)
{
const int n = (argc > 1) ? (atoi(&argv[1][1])) : 0;
switch(n)
{
case 1: sc0200(argc,argv); break; // Gestione partite
case 2: sc0300(argc,argv); break; // Pareggio partite
default: sc0100(argc,argv); break; // Gestione classica
}
return 0;
}