-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenus.c
38 lines (32 loc) · 901 Bytes
/
menus.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* $Id: menus.c,v 39.1 1995/04/25 01:41:24 mbayne Exp $
*
* The information in this file was created by Michael D. Bayne. This
* information is in the public domain. You are permitted to reuse, rewrite,
* bend, fold and mutilate this information. When it comes down to it, all
* this distribution information is pretty much crap anyway and I maintain
* exclusive rights to everything you see here, but go ahead and use it
* anyway. I'm too busy doing cool stuff to sue anyone.
*
* $Log: menus.c,v $
* Revision 39.1 1995/04/25 01:41:24 mbayne
* Initial revision.
*
*/
#include <exec/types.h>
#include "board.h"
#include "main.h"
int BeschABOUT( void )
{
appInfo( "Bescheißen\n\nby Michael D. Bayne\nmbayne@qualcomm.com" );
return TRUE;
}
int BeschNEW( void )
{
boardClassReset( Win );
appStartGame();
return TRUE;
}
int BeschQUIT( void )
{
return FALSE;
}