mirror of
https://github.com/open-goal/jak-project
synced 2026-06-24 09:51:29 -04:00
25 lines
361 B
Common Lisp
25 lines
361 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: bigmap.gc
|
|
;; name in dgo: bigmap
|
|
;; dgos: ENGINE, GAME
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
;; stubs
|
|
|
|
(defmethod bigmap-method-14 bigmap ((obj bigmap))
|
|
(none)
|
|
)
|
|
|
|
(defmethod bigmap-method-15 bigmap ()
|
|
(none)
|
|
)
|
|
|
|
(defmethod initialize bigmap ((obj bigmap))
|
|
(format 0 "in init~%")
|
|
(none))
|
|
|
|
(define *bigmap* (new 'global 'bigmap))
|