mirror of
https://github.com/open-goal/jak-project
synced 2026-05-27 08:09:29 -04:00
656489e942
* temp * temp2 * basic case support * working for or without else * support more cases * clean up to drawable headers * ocean * format json
18 lines
411 B
Common Lisp
18 lines
411 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: progress.gc
|
|
;; name in dgo: progress
|
|
;; dgos: GAME, ENGINE
|
|
|
|
(defmethod relocate game-count-info ((this game-count-info) (offset int))
|
|
"Load in the game-count-info. This is a bit of a hack."
|
|
(set! *game-counts* this)
|
|
)
|
|
|
|
(defmethod hidden? progress ((obj progress))
|
|
(or (not *progress-process*)
|
|
(= (-> *progress-process* 0 in-out-position) 4096)
|
|
)
|
|
)
|