mirror of
https://github.com/diasurgical/devilution.git
synced 2025-07-23 12:33:00 +02:00
15 lines
299 B
C
15 lines
299 B
C
/**
|
|
* @file itemdat.h
|
|
*
|
|
* Interface of all item data.
|
|
*/
|
|
#ifndef __ITEMDAT_H__
|
|
#define __ITEMDAT_H__
|
|
|
|
extern ItemDataStruct AllItemsList[];
|
|
extern const PLStruct PL_Prefix[];
|
|
extern const PLStruct PL_Suffix[];
|
|
extern const UItemStruct UniqueItemList[];
|
|
|
|
#endif /* __ITEMDAT_H__ */
|