Files
jak-project/goal_src/jakx/engine/geometry/path-h.gc
T
2026-05-08 18:54:05 -04:00

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