Files
vgstation13/code/__HELPERS/math/ray/rayCastHitInfo.dm
ShiftyRail d79c1fe070 Byond 516 v2.0 (#37553)
* The TGS thing

* Revert the 516 revert

* Further segment the world/New() proc

* Fixes an issue here
2025-05-12 00:50:25 -05:00

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
..()