Now that I have working program starter, are there any simple methods of filling in the info to it? I just have the base of it set up and I am not sure how to set up the self-typer.
If there are any tutorials made for handling things like this please link me or if you have some time and are willing to help, please do.
Here is the base:
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
cout << "Starting Steam...\n\n";
system("\"C:/Program Files/Steam/steam.exe\"");
}
cin.get();
cin.get();
}