blob: 89accc37f883405ed654bafa20ff30cca77ec9a3 (
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
41
42
43
44
|
#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;
}
position;
float array[2];
}
rodeo_vector2_t;
typedef
union
{
struct
{
float x;
float y;
float z;
}
position;
float array[3];
}
rodeo_vector3_t;
|