xtralib
0.1.0
A simple header-based drop-in library
include
xtra
raylib.h
Go to the documentation of this file.
1
9
#ifndef __XTRA_RAYLIB_H__
10
#define __XTRA_RAYLIB_H__
11
12
#if defined __has_include
13
# if __has_include (<raylib.h>)
14
# include <
raylib.h
>
15
# else
16
# pragma message ("Raylib wasn't discovered, most likely it's not being linked"
)
17
# endif
18
# if __has_include (<raymath.h>)
19
# include <raymath.h>
20
# else
21
# pragma message ("Raymath wasn't discovered, most likely it's not being linked"
)
22
# endif
23
#endif
24
25
26
27
#if defined(RAYLIB_H) && defined(RAYMATH_H)
32
void
DrawDashedLineEx(Vector2 startPos, Vector2 endPos,
33
float
spacing,
float
thick, Color color);
34
35
#endif
36
37
#endif
38
raylib.h
Some extras for Raylib programs.
Generated by
1.9.1