mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
13 lines
151 B
C++
13 lines
151 B
C++
#include <iostream>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include "rps.h"
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
Rps game;
|
|
|
|
game.newgame();
|
|
return 0;
|
|
} |