Added VERY old code. Very cringy to look at, but hey, we all had to start somewhere...

This commit is contained in:
2018-01-08 23:37:31 -08:00
parent 7b18f6a807
commit df19ed7631
141 changed files with 26107 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#include <iostream>
#include <stdlib.h>
#include <time.h>
#include "rps.h"
using namespace std;
int main()
{
Rps game;
game.newgame();
return 0;
}