summaryrefslogtreecommitdiff
path: root/world/ui.sld
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2024-01-15 19:56:23 +0100
committerEkaitz Zarraga <ekaitz@elenq.tech>2024-01-18 22:48:57 +0100
commit42f3c3b9493e39d20ec43a7643f8e6900da331c1 (patch)
treef134a4195fe6acd4c8d81a0bd5320dc45130b09e /world/ui.sld
parent6cbfd6331287827fc14791e387c48e97656445c1 (diff)
world: reorganize and start the magic
Diffstat (limited to 'world/ui.sld')
-rw-r--r--world/ui.sld10
1 files changed, 5 insertions, 5 deletions
diff --git a/world/ui.sld b/world/ui.sld
index 3a4ae56..1f2eda9 100644
--- a/world/ui.sld
+++ b/world/ui.sld
@@ -1,10 +1,10 @@
(define-library (world ui)
(import (scheme base)
- (par piece-table))
+ (world tty-commands)
+ (par piece-table)) ;; Remove the piece table from here later, and move to main
(cond-expand
- (chibi (import (scheme small)
- (chibi stty)))
- (guile (import (nothing)))) ; we fail now, but in the future i can build
- ; a simple wrapper around termios
+ (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"))