mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-17 21:52:42 +00:00
18 lines
250 B
Plaintext
18 lines
250 B
Plaintext
var/global/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)
|
|
maze_cell_count++
|
|
uid = maze_cell_count
|
|
name = "cell #[uid]"
|
|
x = nx
|
|
y = ny
|
|
ox = nox
|
|
oy = noy |