Files
jak-project/goal_src/jak3/engine/entity/entity.gc
T
2024-03-30 16:06:19 -04:00

24 lines
373 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: entity.gc
;; name in dgo: entity
;; dgos: GAME
(defmethod birth bsp-header ((this bsp-header))
(format #t "skipping birth for ~A~%" this)
(none)
)
(defun reset-actors ((arg0 symbol))
(format #t "skipping reset-actors ~A~%" arg0)
(none)
)
(defun entity-by-name ((arg0 string))
(the entity #f)
)
;; DECOMP BEGINS