summaryrefslogtreecommitdiff
path: root/world/ui.sld
blob: 1f2eda9e5b71a561c4c37c3ae91fae8fee220deb (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 ()))) ; we fail now, but in the future i can build
                         ; a simple wrapper around termios
  (export start)
  (include "ui.scm"))