summaryrefslogtreecommitdiffstats
path: root/include/ace.h
blob: 90b19962990793e6665557799638590f7c288b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef ACE_H
#define ACE_H

#include <stdbool.h>

typedef struct ace_ballistics ace_ballistics;

typedef struct {
	ace_ballistics *ballistics;
} ace_config;
extern ace_config *ace;

struct ace_ballistics {
	bool enabled;
};

#endif