mirror of
https://github.com/Ragora/T2-BoL.git
synced 2026-04-27 23:15:03 +00:00
Initial commit.
This commit is contained in:
commit
9a05e8d86c
652 changed files with 154587 additions and 0 deletions
17
scripts/creditsText.cs
Normal file
17
scripts/creditsText.cs
Normal 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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue