scummvm/devtools/create_kyradat/resources/lol_dos_demo_english.h
Johannes Schickel 800fc0722d DEVTOOLS: Rewrite create_kyradat.
Now static data is directly stored inside source code files which allows the
tool to generate kyra.dat without any additional input.

This will make supporting fan translations easier, since only the localized
strings have to be added and an appropriate game entry has to be added.
2014-03-03 02:00:04 +01:00

16 lines
526 B
C

static const char *const kLoLSeqplayStringsDOSDemoEnglish[10] = {
"The Lands have become perilous",
"to travellers",
"King Richard holds the strength",
"to defeat Sorceress Scotia!",
"You have the ability to restore",
"hope to the People",
"Cruel and hideous monsters",
"will hinder your quest...",
"Will you accept the challenge ?",
"Scotia awaits..."
};
static const StringListProvider kLoLSeqplayStringsDOSDemoEnglishProvider = { ARRAYSIZE(kLoLSeqplayStringsDOSDemoEnglish), kLoLSeqplayStringsDOSDemoEnglish };