aboutsummaryrefslogtreecommitdiffhomepage
path: root/wheelwork-examples.asd
blob: 9680e854d59f66644f8b0de0f3b00283608db89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(asdf:defsystem #:wheelwork-examples
  :description "Examples using wheelwork"
  :author "colin <colin@cicadas.surf>"
  :license  "GPL-3.0"
  :version "0.0.1"
  :serial t
  :depends-on (#:wheelwork)
  :pathname "examples/"
  :components ((:file "01-bitmap-display")
               (:file "02-moving-bitmp")
               (:file "03-font-render")
               (:file "04-a-button")
               (:file "05-frameset-animation")
               (:file "06-sprite")
               (:file "07-renderarea")
               (:file "08-pong")
               (:file "09-ghoulspree")))