re-raylib-d 3.0.3
D binding for Raylib
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
raylib-d
(static) D bindings for raylib, a simple and easy-to-use library to learn videogames programming.
Installation
dub add raylib-d
First, get a copy of Raylib
You can get the library by compiling it from the source, download the official precompiled binaries or download them from our repository (originally taken from official releases, sorted in folders for each system).
In order to link against raylib, add it to your dub.json.
"libs": [ "raylib" ]
For more information look into the wiki.
Sample
import raylib;
void main()
{
InitWindow(800, 600, "Hello, Raylib-D!");
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Hello, World!", 400, 300, 28, BLACK);
EndDrawing();
}
CloseWindow();
}
Docs / cheatsheet
License
raylib-d is licensed under an unmodified zlib/libpng license. View LICENSE.
- Registered by redthing1
- 3.0.3 released 4 years ago
- redthing1/re-raylib-d
- Zlib
- Copyright (c) Ramon Santamaria (@raysan5), Petro Romanovych (@onroundit), Jan Hoenig (@m3m0ry)
- Authors:
- Dependencies:
- none
- Versions:
-
3.0.6 2020-Jul-25 3.0.5 2020-Jul-24 3.0.4 2020-Jul-23 3.0.3 2020-Jul-23 ~master 2021-Mar-16 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
29 downloads total
-
- Score:
- 0.3
- Short URL:
- re-raylib-d.dub.pm