blob: 41fda44bf1fb97bb042db5ca41d9f6db5a95e702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _LOOT_H_
#define _LOOT_H_
#include "../inventory/inventory.h"
struct loot
{
struct item *item;
int chance;
int min;
int max;
};
void register_loot(struct loot loot);
#endif
|