summaryrefslogtreecommitdiff
path: root/src/device_allocation.hpp
blob: 28854eacf833effa19f2c5449d9238e372d2de62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "device_allocation_fwd.hpp"
#include "range.hpp"

/*
 * Device allocation for skill
 */
struct device_allocation
{
	byte tval;
	s32b rarity;
	range_type base_level;
	range_type max_level;
};

struct device_allocation *device_allocation_new(byte tval);