package.lisp @ 34cb41653c41

Start the rendering code
author Steve Losh <steve@stevelosh.com>
date Sat, 07 Jan 2017 12:10:22 +0000
parents a750a924e59e
children 91b6c62b6f75
(defpackage :ap.utilities
  (:use
    :cl
    :iterate
    :cl-arrows
    :losh
    :beast
    :ap.quickutils)
  (:export
    :with-window
    :with-windows
    :with-panels
    :with-panel
    :with-panel-and-window
    :with-panels-and-windows
    :center
    :border
    :redraw
    :write-string-left
    :write-string-centered
    :write-lines-left
    :write-lines-centered
    :with-dims
    ))

(defpackage :ap.gen
  (:use
    :cl
    :iterate
    :cl-arrows
    :losh
    :beast
    :ap.utilities
    :ap.quickutils)
  (:export))

(defpackage :ap
  (:use
    :cl
    :iterate
    :cl-arrows
    :losh
    :beast
    :ap.utilities
    :ap.quickutils)
  (:export
    :main))