11 lines
120 B
C
11 lines
120 B
C
|
#ifndef __DEFS_H__
|
||
|
#define __DEFS_H__
|
||
|
|
||
|
struct art_entry
|
||
|
{
|
||
|
char *name;
|
||
|
char *art[4];
|
||
|
};
|
||
|
|
||
|
#endif /* __DEFS_H__ */
|