blob: 844601a6b0a77c6ed60ede25cbdd01c6790c9790 (
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
29
30
31
32
33
34
35
36
37
38
39
40
|
#pragma once
// -- external --
#include "stc/cstr.h"
typedef
enum
{
rodeo_logLevel_info,
rodeo_logLevel_warning,
rodeo_logLevel_error
}
rodeo_logLevel_t;
typedef
void
(*rodeo_log_function)(cstr text);
typedef
union
{
struct {
float x;
float y;
};
float array[2];
}
rodeo_vector2_t;
typedef
union
{
struct {
float x;
float y;
float z;
};
float array[3];
}
rodeo_vector3_t;
|