aboutsummaryrefslogtreecommitdiffhomepage
path: root/wheelwork-examples.asd
blob: 324383109b930131fa8a75a2ed0e0ef1a826abf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(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 #:wheelwork-gui)
  :pathname "examples/"
  :components ((:file "01-click-and-drag-image")
               (:file "02-image-transforms-and-events")
               (:file "03-font-render")
               (:file "04-a-button")
               (:file "05-frameset-animation")
               (:file "06-sprite")
               (:file "07-renderarea")
               (:file "08-pong")
               (:file "09-ghoulspree")
               (:file "10-canvas-sneks")
               (:file "11-canvas-geometry")
               (:file "12-canvas-drawing-language")
               (:file "13-menus")
               (:file "14-canvas-paint")))