File: blockade-lev.h

package info (click to toggle)
blockade 20041028-9
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k, lenny
  • size: 500 kB
  • ctags: 804
  • sloc: ansic: 7,485; sh: 177; makefile: 86
file content (17 lines) | stat: -rw-r--r-- 305 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Copyright status: this file is in the public domain. */

#include "blockade.h"

#ifndef N_DEF_LEVELS

#define N_DEF_LEVELS 80

struct def_level_ {
  const char *name;
  const char layout[BOARD_Y][BOARD_X];
  } ;
typedef struct def_level_ DEF_LEVEL;

extern DEF_LEVEL b_l_builtin[N_DEF_LEVELS];

#endif