Notices & clean
[carveJwlIkooP6JGAAIwe30JlM.git] / common.h
1 /*
2 * Copyright (C) 2021-2022 Mt.ZERO Software, Harry Godden - All Rights Reserved
3 */
4
5 #ifndef COMMON_H
6 #define COMMON_H
7
8 #define VG_3D
9 #define VG_FRAMEBUFFER_RESIZE 1
10 #include "vg/vg.h"
11
12 static float ktimestep = 1.0f/60.0f;
13
14 typedef struct ray_hit ray_hit;
15 struct ray_hit
16 {
17 float dist;
18 u32 *tri;
19 v3f pos, normal;
20 };
21
22 static int network_scores_updated = 0;
23
24 #endif /* COMMON_H */