mirror of
https://github.com/Ragora/T2-BoL.git
synced 2026-01-20 03:24:47 +00:00
15 lines
322 B
C#
15 lines
322 B
C#
// Replacement code for the original T2 credits?
|
|
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();
|
|
} |