mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-28 18:21:51 +00:00
Turned a ton of unmanaged globals into managed globals. Refactored some UT output. Removed some unused things, including vars. Added a test to ensure people don't keep adding new unmanaged vars.
19 lines
266 B
Plaintext
19 lines
266 B
Plaintext
GLOBAL_VAR_INIT(maze_cell_count, 0)
|
|
|
|
/datum/maze_cell
|
|
var/name
|
|
var/uid
|
|
var/x
|
|
var/y
|
|
var/ox
|
|
var/oy
|
|
|
|
/datum/maze_cell/New(var/nx,var/ny,var/nox,var/noy)
|
|
GLOB.maze_cell_count++
|
|
uid = GLOB.maze_cell_count
|
|
name = "cell #[uid]"
|
|
x = nx
|
|
y = ny
|
|
ox = nox
|
|
oy = noy
|