summaryrefslogtreecommitdiff
path: root/src/dungeon.h
blob: 1ce166d1c468e435856680bff3a20400411ff605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "h-basic.h"

// C linkage required for these functions since main-* code uses them.
#ifdef __cplusplus
extern "C" {
#endif

extern void play_game(bool_ new_game);

#ifdef __cplusplus
} // extern "C"
#endif