1 /**
2  * @file textdat.h
3  *
4  * Interface of all dialog texts.
5  */
6 #ifndef __TEXTDAT_H__
7 #define __TEXTDAT_H__
8 
9 DEVILUTION_BEGIN_NAMESPACE
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 extern const TextDataStruct alltext[];
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 DEVILUTION_END_NAMESPACE
22 
23 #endif /* __TEXTDAT_H__ */
24