]> git.jsancho.org Git - gacela.git/commitdiff
(no commit message)
authorjsancho <devnull@localhost>
Sun, 1 Nov 2009 14:48:06 +0000 (14:48 +0000)
committerjsancho <devnull@localhost>
Sun, 1 Nov 2009 14:48:06 +0000 (14:48 +0000)
gacela_mobs.lisp

index 79a8be2b98e1a3340ea2722254e0fd143e550249..62e6e6cf2668a68866831b030226c28a553c47c5 100755 (executable)
 
 ;;; World of Mob
 
-(in-package :gacela)
+;(in-package :gacela)
 
 (defmacro makemob (name variables &rest methods)
-  `(lambda ,
+  `(let ,variables
+     (defun ,name (&rest args &aux (option (car args)))
+       ,(mob-options methods))))
+
+(defun mob-options (methods)
+  )
 
 (defmacro defmob (name variables &key init logic render)
   `(let ((make-name ',(intern (concatenate 'string "MAKE-" (string name)))))