From 0e1930f68e989089344c2a8207a0877ea554659e Mon Sep 17 00:00:00 2001 From: oakes Date: Sun, 20 Apr 2014 11:41:44 -0400 Subject: [PATCH] Move symbol --- src/play_clj/physics.clj | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/play_clj/physics.clj b/src/play_clj/physics.clj index 8844d76..03cfc36 100644 --- a/src/play_clj/physics.clj +++ b/src/play_clj/physics.clj @@ -146,6 +146,8 @@ (defmacro polygon-shape [& body] `(p2d/polygon-shape ~@body)) (defmacro polygon-shape! [& body] `(p2d/polygon-shape! ~@body)) + +(def init-bullet p3d/init-bullet) (def bullet-3d* p3d/bullet-3d*) (defmacro bullet-3d [& body] `(p3d/bullet-3d ~@body)) (defmacro bullet-3d! [& body] `(p3d/bullet-3d! ~@body)) @@ -173,7 +175,3 @@ (def sphere-shape* p3d/sphere-shape*) (defmacro sphere-shape [& body] `(p3d/sphere-shape ~@body)) (defmacro sphere-shape! [& body] `(p3d/sphere-shape! ~@body)) - -(defn init-bullet! - [] - @p3d/init-bullet)