Skip to content

burdockcascade/cosmos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cosmos

Feature Table

Status Feature Description
✔️ Window Create a window
✔️ Graphics2D Draw 2D graphics
✔️ Input Handle input events

Example

Window.Init(800, 450, "Basic Window")
Window.SetTargetFPS(60)

while not Window.ShouldClose() do
    Window.ClearBackground(COLOR_RAYWHITE)
    Window.BeginDrawing()
        Graphics2D.DrawText("Congrats! You created your first window!", 190, 200, 20, COLOR_DARKGRAY)
    Window.EndDrawing()
end

Window.Close()

Dependencies

About

Game Framework using Raylib and Lua

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published