mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 15:42:35 +00:00
10 lines
262 B
Plaintext
10 lines
262 B
Plaintext
/datum/holodeck_program
|
|
var/target
|
|
var/list/ambience = null
|
|
var/loop_ambience = TRUE
|
|
|
|
/datum/holodeck_program/New(var/target, var/list/ambience = null, var/loop_ambience = TRUE)
|
|
src.target = target
|
|
src.ambience = ambience
|
|
src.loop_ambience = loop_ambience
|