raylib-d on underlevel for himmel

Jan Hönig 8b8b8b28d1 Updated Readme with installation wiki link 5 лет назад
example e3300ac44b Added a simple example 5 лет назад
source 4fcfdcf1bf Add Raylib 3.0 support 5 лет назад
.gitignore 763f95c8dd wrap rlgl, add @nogc nothrow 5 лет назад
LICENSE cded121463 LICENSE 5 лет назад
README.md 8b8b8b28d1 Updated Readme with installation wiki link 5 лет назад
dub.json 3cff361868 please work 5 лет назад
dub.selections.json 3d142f9087 upload 5 лет назад
raylib_logo.png c7d8029a64 Add files via upload 5 лет назад

README.md

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

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.