summaryrefslogtreecommitdiff
path: root/src/device_allocation.h
blob: e620270f665fb09d7e391f17b9a0ee9ec1a789d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once

#include "device_allocation_fwd.h"
#include "range.h"

#ifdef __cplusplus
extern "C" {
#endif

/*
 * Device allocation for skill
 */
struct device_allocation
{
	byte tval;
	s32b rarity;
	range_type base_level;
	range_type max_level;
	/* Next device allocation in the list */
	device_allocation *next;
};

int compare_device_allocation(device_allocation *a, device_allocation *b);
SGLIB_DEFINE_LIST_PROTOTYPES(device_allocation, compare_device_allocation, next);

void device_allocation_init(struct device_allocation *device_allocation, byte tval);
struct device_allocation *device_allocation_new(byte tval);

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