mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-13 01:03:15 +01:00
19 lines
250 B
Plaintext
19 lines
250 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(nx,ny,nox,noy)
|
|
GLOB.maze_cell_count++
|
|
uid = GLOB.maze_cell_count
|
|
name = "cell #[uid]"
|
|
x = nx
|
|
y = ny
|
|
ox = nox
|
|
oy = noy
|