mirror of
https://github.com/open-goal/jak-project
synced 2026-07-31 08:16:02 -04:00
ce6ebc385c
* decomp: decompile `trajectory` * address review feedback * some more corrections
31 lines
911 B
Common Lisp
31 lines
911 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: trajectory-h.gc
|
|
;; name in dgo: trajectory-h
|
|
;; dgos: GAME, ENGINE
|
|
|
|
;; definition of type trajectory
|
|
(deftype trajectory (structure)
|
|
((initial-position vector :inline :offset-assert 0)
|
|
(initial-velocity vector :inline :offset-assert 16)
|
|
(time float :offset-assert 32)
|
|
(gravity float :offset-assert 36)
|
|
)
|
|
:method-count-assert 16
|
|
:size-assert #x28
|
|
:flag-assert #x1000000028
|
|
(:methods
|
|
(TODO-RENAME-9 (_type_ float vector) vector 9)
|
|
(TODO-RENAME-10 (_type_ float vector) vector 10)
|
|
(TODO-RENAME-11 (_type_ vector vector float float) none 11)
|
|
(TODO-RENAME-12 (_type_ vector vector float float) none 12)
|
|
(TODO-RENAME-13 (_type_ vector vector float float) none 13)
|
|
(TODO-RENAME-14 (_type_ vector vector float float) none 14)
|
|
(TODO-RENAME-15 (_type_) none 15)
|
|
)
|
|
)
|
|
|
|
|
|
|