blob: f275a9dfb9322c70d011b86f36df90074f2a6ee9 (
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
|
#ifndef LINGCOD_H
#define LINGCOD_H
#ifdef __cplusplus
extern "C" {
#endif
int lingcod_getIniState();
int NVGXCreateGroup();
int NVGXCreateSubGroup();
void NVGXReleaseGroup();
float lingcod_getBloomScale();
float lingcod_getDoFScale();
int lingcod_fireGameEventEx();
inline void lingcod_revalidateNVSI() {
return;
}
inline void lingcod_callNVSISnippet() {
return;
}
#ifdef __cplusplus
}
#endif
#endif
|