Files
jak-project/goal_src/engine/level/level.gc
T
ManDude a123f02c32 [decomp] prepare for some files, fill in some types (#617)
* [mips disasm] don't multiply `vcallms` parameter by 8

* [decomp] prep some game loop files
2021-06-21 19:47:39 -04:00

13 lines
279 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: level.gc
;; name in dgo: level
;; dgos: GAME, ENGINE
(defun play ((arg0 symbol) (arg1 symbol))
(format #t "(play ~A ~A) has been called!~%" arg0 arg1)
(format 0 "(play ~A ~A) has been called!~%" arg0 arg1)
(kernel-shutdown)
0
)