mirror of
https://github.com/open-goal/jak-project
synced 2026-06-30 03:49:08 -04:00
23 lines
485 B
Common Lisp
23 lines
485 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: path-h.gc
|
|
;; name in dgo: path-h
|
|
;; dgos: ENGINE, GAME
|
|
|
|
;; +++path-control-flag
|
|
(defenum path-control-flag
|
|
:bitfield #t
|
|
:type uint32
|
|
(display 0)
|
|
(draw-line 1) ;; TODO - only seen it used to control debug drawing so far
|
|
(draw-point 2) ;; TODO - only seen it used to control debug drawing so far
|
|
(draw-text 3) ;; TODO - only seen it used to control debug drawing so far
|
|
(not-found 4)
|
|
)
|
|
;; ---path-control-flag
|
|
|
|
|
|
;; DECOMP BEGINS
|
|
|