File: newbie.h

package info (click to toggle)
jnethack 1.1.5-21
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 18,000 kB
  • ctags: 14,991
  • sloc: ansic: 163,971; asm: 2,412; yacc: 2,002; lex: 412; sh: 179; makefile: 58
file content (27 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (3)
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
/*
  $Id:$
 */

#ifndef NEWBIE_H
#define NEWBIE_H

#include "global.h"

struct newbie{
     Bitfield(search, 1);
     Bitfield(pickup, 1);
     Bitfield(unlock, 1);
     Bitfield(open, 1);
     Bitfield(down, 1);
     Bitfield(pray, 1);
     Bitfield(fainted, 1);
     Bitfield(weak, 1);
     Bitfield(eat, 1);
     Bitfield(loot, 1);
     Bitfield(offer, 1);

     int try_open;
     int found_altar;
     int found_chest;
} newbie;
#endif