yohamta / donburi

Just another ECS library for Go/Ebitengine
https://pkg.go.dev/github.com/yohamta/donburi
Other
271 stars 23 forks source link

Create `features/dui` package #77

Closed yohamta closed 1 year ago

yohamta commented 2 years ago
dui.Create(ui.Config{
  Style: {
    // .. style options
    Top: 100,
    Left: 100,
    Width: 300,
    Height: 300,
  },
}).WithChildren(
  ui.Create(ui.Config{
    Style: {
      // .. style options
    },
  },
))