mirror of
https://gitlab.com/drummyfish/anarch.git
synced 2024-11-22 08:52:17 -05:00
28 lines
545 B
C
28 lines
545 B
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",
|
|
"exit"
|
|
};
|
|
|
|
#endif // gaurd
|