mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 07:57:50 +00:00
* The TGS thing * Revert the 516 revert * Further segment the world/New() proc * Fixes an issue here
21 lines
461 B
Plaintext
21 lines
461 B
Plaintext
/rayCastHitInfo
|
|
var/ray/used_ray
|
|
var/datum/weakref/hit_atom
|
|
var/_vector/point
|
|
var/_vector/point_raw
|
|
var/distance
|
|
|
|
/rayCastHitInfo/New(var/ray/used_ray, var/datum/weakref/hit_atom, var/_vector/point, var/_vector/point_raw, var/distance)
|
|
src.used_ray = used_ray
|
|
src.hit_atom = hit_atom
|
|
src.point = point
|
|
src.point_raw = point_raw
|
|
src.distance = distance
|
|
|
|
/rayCastHitInfo/Destroy()
|
|
used_ray = null
|
|
hit_atom = null
|
|
point = null
|
|
point_raw = null
|
|
..()
|