use raygui

This commit is contained in:
Fabien Freling 2022-03-24 13:25:40 +01:00
parent 82b49f65c2
commit f5f6cf81b4
3 changed files with 12 additions and 6 deletions

View file

@ -2,6 +2,10 @@ const std = @import("std");
const ray = @cImport({
@cInclude("raylib.h");
});
const raygui = @cImport({
@cDefine("RAYGUI_IMPLEMENTATION", {});
@cInclude("extras/raygui.h");
});
pub fn main() anyerror!void {
std.log.info("All your codebase are belong to us.", .{});
@ -9,15 +13,17 @@ pub fn main() anyerror!void {
ray.InitWindow(800, 450, "ray [core] example - basic window");
defer ray.CloseWindow();
while (!ray.WindowShouldClose())
{
while (!ray.WindowShouldClose()) {
ray.BeginDrawing();
defer ray.EndDrawing();
ray.ClearBackground(ray.RAYWHITE);
ray.DrawText("Congrats! You created your first window!", 190, 200, 20, ray.LIGHTGRAY);
}
if (raygui.GuiButton(raygui.Rectangle{ .x = 190, .y = 250, .width = 150, .height = 30 }, "Button")) {
std.log.info("Button pressed", .{});
}
}
}
test "basic test" {