Skip to content

scottrick/dgame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

/*
	dGame README maker
	Written by Scott Atkins
	6-15-2008
*/

#include <fstream>
#include <windows.h>
using namespace std;

int main(int argc, char **argv)
{
	ofstream file;
	file.open("README.txt");

	//write README file
	file << "dGame README\n";
	file << "Written by Scott Atkins\n";

	SYSTEMTIME st;
	GetLocalTime(&st);

	file << "Archive created " << st.wMonth << "-" << st.wDay << "-" << st.wYear << " " << st.wHour << ":" << st.wMinute << endl;

	file.close();
	return 0;
}

Releases

No releases published

Packages

No packages published