mirror of
https://gitlab.com/drummyfish/anarch.git
synced 2024-11-22 00:42:16 -05:00
42 lines
1.0 KiB
C
42 lines
1.0 KiB
C
/**
|
|
@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",
|
|
"shear",
|
|
"exit"
|
|
};
|
|
|
|
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.";
|
|
|
|
#define SFG_MALWARE_WARNING ""
|
|
|
|
#if SFG_OS_IS_MALWARE
|
|
#define SFG_MALWARE_WARNING "MALWARE OS DETECTED"
|
|
#endif
|
|
|
|
#endif // gaurd
|