summaryrefslogtreecommitdiff
path: root/world/ui.sld
blob: b59401ec399c3914cb083f4f048abc16b3acf8fe (plain)
1
2
3
4
5
6
7
8
9
10
(define-library (world ui)
  (import (scheme base)
          (world tty-commands)
          (par piece-table)) ;; Remove the piece table from here later, and move to main
  (cond-expand
    (chibi (import (chibi stty)))
    (guile (import (world guile-tty)))) ; we fail now, but in the future i can build
                                        ; a simple wrapper around termios
  (export run)
  (include "ui.scm"))