mirror of
https://github.com/Ragora/T2-BoL.git
synced 2026-01-20 03:24:47 +00:00
18 lines
288 B
C#
18 lines
288 B
C#
|
|
//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();
|
||
|
|
}
|