forked from shiryel/rayex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docs.exs
61 lines (60 loc) · 1.22 KB
/
docs.exs
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
alias Rayex.{Audio, Core, Models, Shapes, Structs, Text, Textures}
[
main: "readme",
extras: [
"README.md"
],
source_url: "https://github.com/shiryel/rayex",
nest_modules_by_prefix: [
Rayex,
Structs
],
groups_for_modules: [
Rayex: [
Rayex,
Core,
Shapes,
Textures,
Text,
Models,
Audio
],
Structs: [
Structs.AudioStream,
Structs.BoneInfo,
Structs.BoundingBox,
Structs.Camera2D,
Structs.Camera3D,
Structs.Color,
Structs.Font,
Structs.GlyphInfo,
Structs.Image,
Structs.Material,
Structs.MaterialMap,
Structs.Matrix,
Structs.Mesh,
Structs.Model,
Structs.ModelAnimation,
Structs.Music,
Structs.NPatchInfo,
Structs.Quaternion,
Structs.RAudioBuffer,
Structs.Ray,
Structs.RayCollision,
Structs.Rectangle,
Structs.RenderTexture,
Structs.RenderTexture2D,
Structs.Shader,
Structs.Sound,
Structs.Texture2D,
Structs.TextureCubemap,
Structs.Transform,
Structs.Vector2,
Structs.Vector3,
Structs.Vector4,
Structs.VrDeviceInfo,
Structs.VrStereoConfig,
Structs.Wave
]
]
]