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

#include "angband.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef struct device_allocation device_allocation;
struct device_allocation;

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

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