Initial commit.

This commit is contained in:
Robert MacGregor 2012-07-27 17:22:05 -04:00
commit 9a05e8d86c
652 changed files with 154587 additions and 0 deletions

17
scripts/creditsText.cs Normal file
View file

@ -0,0 +1,17 @@
//Parse our file blahha!
if (!isFile("data/creditsText.txt"))
{
exec("scripts/creditsText_default.cs");
}
else
{
%read = new fileObject();
%read.openForRead("data/creditsText.txt");
while (!%read.isEOF())
{
%line = %read.readline();
addCreditsLine(%line);
}
%read.detach();
}