This is a WIP, planned free-to-use GUI library powered by Odin's SDL2 binding.
package main
import beef "shared:Beef"
main :: proc() {
beef.NewWindow("Tutorial", 300, 300)
beef.NewText("Terminal.ttf", "Hello World", beef.Black)
}
Window Widget and the point where SDL2 is initialized.
New (static) Text using a loaded .ttf
font. Using the TTF SDL2 extension.
Image Renderer and decoder using SDL2's Image extension.
Set Background Color (default is white)
Beef4C: A C binding to Beef allowing developers to use Beef with both C and C++