aboutsummaryrefslogtreecommitdiff
path: root/src/survive_driverman.h
blob: 216333a29a3aa9c166bb9c94317461dbf4e9c5a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// (C) 2017 <>< C. N. Lohr, Under MIT/x11 License.
//
// This file is intended to be used for self-registering functions.  By using
// this it means that you do not need to have complicated switch statements or
// #defines for dfferent inclusion of drivers/other code.  You can simply
// register your function and it will be put into a list.
//
//

#ifndef SURVIVE_DRIVERMAN_H
#define SURVIVE_DRIVERMAN_H

#include "survive.h"

//Very little here.  Mostly included in survive.h.

//Driver registration
#define MAX_DRIVERS 32


#endif