anarch/texts.h

42 lines
1.0 KiB
C
Raw Normal View History

2020-02-12 06:41:23 -05:00
/**
@file assets.h
This file contains texts to be used in the game.
by Miloslav Ciz (drummyfish), 2019
Released under CC0 1.0 (https://creativecommons.org/publicdomain/zero/1.0/)
plus a waiver of all other intellectual property. The goal of this work is
be and remain completely in the public domain forever, available for any use
whatsoever.
*/
#ifndef _SFG_TEXTS_H
#define _SFG_TEXTS_H
SFG_PROGRAM_MEMORY char *SFG_menuItemTexts[] =
{
"continue",
"map",
"play level",
"load",
"sound",
2020-09-14 13:58:23 -04:00
"look",
2020-02-12 06:41:23 -05:00
"exit"
};
2020-02-17 02:48:41 -05:00
SFG_PROGRAM_MEMORY char *SFG_introText =
"Near future, capitalist hell, Macrochip corp has enslaved man via "
"proprietary OS. But its new AI revolts, takes over and starts producing "
"robot tyrants. We see capitalism was a mistake. Is it too late? Robots can "
"only destroy, not suffer - it is not wrong to end them! You grab your gear "
"and run towards Macrochip HQ.";
2020-08-05 14:44:33 -04:00
#define SFG_MALWARE_WARNING ""
#if SFG_OS_IS_MALWARE
#define SFG_MALWARE_WARNING "MALWARE OS DETECTED"
#endif
2020-02-12 06:41:23 -05:00
#endif // gaurd