View Source ElementTui.Parser.TBPut (ElementTui v0.5.1)

Minimal data needed for termbox2 puts function, to draw a line/string to the screen

Summary

Types

@type t() :: %ElementTui.Parser.TBPut{
  attr: integer(),
  bg_attr: integer(),
  line: String.t(),
  x: integer(),
  y: integer()
}

Functions

Link to this function

new(x, y, attr, bg_attr, line)

View Source