mirror of
https://github.com/open-goal/jak-project
synced 2026-08-01 16:29:37 -04:00
24 lines
373 B
Common Lisp
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
|
|
|