raylib-d on underlevel for himmel
![]() |
4 éve | |
---|---|---|
example | 5 éve | |
source | 4 éve | |
.gitignore | 5 éve | |
LICENSE | 5 éve | |
README.md | 4 éve | |
dub.json | 5 éve | |
dub.selections.json | 5 éve | |
raylib_logo.png | 5 éve |
(static) D bindings for raylib, a simple and easy-to-use library to learn videogames programming.
dub add raylib-d
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).
"libs": [ "raylib" ]
For more information look into the wiki.
import raylib;
void main()
{
InitWindow(800, 600, "Hello, Raylib-D!");
while (!WindowShouldClose())
{
BeginDrawing();
ClearBackground(Colors.RAYWHITE);
DrawText("Hello, World!", 400, 300, 28, Colors.BLACK);
EndDrawing();
}
CloseWindow();
}
raylib-d is licensed under an unmodified zlib/libpng license. View LICENSE.