summaryrefslogtreecommitdiffstats
path: root/inc/mine-sweeper/ctrl/start.h
blob: 224999b4862531bde1179f9f0f850d6cebc85860 (plain) (blame)
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
39
40
41
42
43
/******************************************************************************
 *	Copyright (C) 2015	Alejandro Colomar Andrés		      *
 ******************************************************************************/


/******************************************************************************
 ******* include guard ********************************************************
 ******************************************************************************/
# ifndef		MSW_START_H
	# define	MSW_START_H


/******************************************************************************
 ******* enums ****************************************************************
 ******************************************************************************/
	enum	Start_Mode {
		START_FOO = 0,
		START_RAND,
		START_LOAD
	};


/******************************************************************************
 ******* variables ************************************************************
 ******************************************************************************/
extern	int	start_mode;


/******************************************************************************
 ******* functions ************************************************************
 ******************************************************************************/
	void	start_switch	(void);


/******************************************************************************
 ******* include guard ********************************************************
 ******************************************************************************/
# endif			/* start.h */


/******************************************************************************
 ******* end of file **********************************************************
 ******************************************************************************/