mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
2f1f8f502e
This employs a "lazy" approach: the "format" for the credits stays exactly as it was, i.e., perl code. Of course one may want to change this to another format (e.g. YAML, JSON, XML; or also shell script or AWK, like `configure.engine` uses). But I deliberately kept it simple, to get a minimal change that is easy to verify. Any further changes to e.g. the format can be layered atop this.
9 lines
368 B
Raku
9 lines
368 B
Raku
begin_section("ScummGlk");
|
|
add_person("Paul Gilbert", "dreammaster", "");
|
|
add_person("Tor Andersson", "", "GarGlk library");
|
|
add_person("Stefan Jokisch", "", "Frotz interpreter");
|
|
add_person("Andrew Plotkin", "", "Glulxe interpreter");
|
|
add_person("Alan Cox", "", "ScottFree interpreter");
|
|
add_person("Michael J. Roberts", "", "TADS interpreter");
|
|
end_section();
|