raylib-d 2.5.0

D binding for Raylib 2.5.


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 DUB

(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).

"libs": [ "raylib" ]

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.

Authors:
  • ONROUNDIT
Dependencies:
none
Versions:
5.0.1 2024-Jan-29
5.0.0 2023-Nov-21
4.5.2 2023-Oct-02
4.5.1 2023-Apr-10
4.5.0 2023-Mar-25
Show all 25 versions
Download Stats:
  • 3 downloads today

  • 24 downloads this week

  • 156 downloads this month

  • 2493 downloads total

Score:
2.6
Short URL:
raylib-d.dub.pm