mirror of
https://github.com/open-goal/jak-project
synced 2026-08-17 05:31:46 -04:00
16 lines
302 B
Common Lisp
16 lines
302 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: collide.gc
|
|
;; name in dgo: collide
|
|
;; dgos: ENGINE, GAME
|
|
|
|
(deftype collide-query-with-vec (structure)
|
|
"A custom type added because of weirdness discovered in task-arrow::23"
|
|
((cquery collide-query :inline)
|
|
(vec vector :inline))
|
|
)
|
|
|
|
;; DECOMP BEGINS
|
|
|