aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/package.lisp
blob: dc18ef4b73f3b82794fbcaca4b9f9d69395117d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
;;;; package.lisp

(defpackage #:wheelwork
  (:use #:cl)
  (:nicknames #:ww)
  (:local-nicknames (#:mat #:3d-matrices)
                    (#:vec #:3d-vectors))
  (:import-from #:defclass-std #:defclass/std)
  (:import-from #:alexandria
                #:when-let #:when-let* #:if-let)
  (:export
   #:add-handler
   #:add-unit
   #:application
   #:asset-root
   #:asset-classifiers
   #:appplication-scale
   #:application-width
   #:application-height
   #:application-window
   #:refocus-on-mousedown-p
   #:application-focus
   #:fps 
   #:bitmap
   #:boot
   #:button
   #:button-up
   #:button-down
   #:button-bg
   #:button-on-press
   #:button-on-release
   #:container
   #:container-left
   #:container-right
   #:container-top
   #:container-bottom
   #:container-units
   #:current-frameset
   #:defhandler
   #:drop-unit
   #:frameset-index
   #:frameset-key
   #:get-asset
   #:get-focus 
   #:make-frameset
   #:on-after-added
   #:on-before-added
   #:on-before-dropped
   #:on-blur
   #:on-focus
   #:on-keydown
   #:on-keyup
   #:on-mousedown
   #:on-mousemotion
   #:on-mousewheel
   #:on-perframe
   #:radians
   #:refocus-on
   #:remove-handler
   #:runningp
   #:shutdown
   #:sprite
   #:sprite-frameset
   #:sprite-frameset-key
   #:start
   #:text
   #:text-color
   #:unit-container
   #:unit-visbilep
   #:units-intersect-p
   #:x
   #:y
   #:width
   #:height
   #:rotation
   #:scale-by
   #:keydown
   #:keyup
   #:mousedown
   #:mouseup
   #:mousemotion
   #:mousewheel
   #:focus
   #:blur
   #:perframe
   #:after-added
   #:before-added
   #:before-dropped
   
   ))