diff options
author | Colin Okay <colin@cicadas.surf> | 2022-07-22 11:58:16 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-07-22 11:58:16 -0500 |
commit | 00841605110612f6e7f3bbfc054ceff980bf25be (patch) | |
tree | 1f16b86d5c555eea22e60cb2d36f88682bd9023b /examples/04-a-button.lisp | |
parent | 6d9b8b48423dba99ecdba004f260c30e6717b6a6 (diff) |
[version] [refactor] [redesign] removed containers
Diffstat (limited to 'examples/04-a-button.lisp')
-rw-r--r-- | examples/04-a-button.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/04-a-button.lisp b/examples/04-a-button.lisp index b96364e..82f5a2c 100644 --- a/examples/04-a-button.lisp +++ b/examples/04-a-button.lisp @@ -26,8 +26,8 @@ (ww::scale-by b 4.0) (ww::scale-by b2 3) ;; add to scene - (ww::add-unit app b2) - (ww::add-unit app b))) + (ww::add-unit b2) + (ww::add-unit b))) (defun start () (ww::start (make-instance |