mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-18 20:59:56 +01:00
de17517e42
* bunch of global 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
|