mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-21 15:51:31 +00:00
16 lines
409 B
Plaintext
16 lines
409 B
Plaintext
// This represents a level we can carve up as we please, and hand out
|
|
// chunks of to whatever requests it
|
|
/datum/space_level/heap
|
|
var/datum/space_chunk/top
|
|
linkage = UNAFFECTED
|
|
|
|
/datum/space_level/heap/New()
|
|
..()
|
|
top = new
|
|
|
|
/datum/space_level/heap/proc/request(width, height)
|
|
return 1 // All are welcome! At least until I add code for this
|
|
|
|
/datum/zlevel/heap/proc/allocate(width, height)
|
|
return
|