mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-25 17:41:56 +00:00
- Implements modular computers, starting with single program (power monitoring console) - Implements most hardware. Some is still TBD, but the important stuff is in place - Implements file-based system. Currently two file types exist, programs, which have NanoUI/Topic() interaction with user and data files, which may be used to store string of data.
5 lines
189 B
Plaintext
5 lines
189 B
Plaintext
// /data/ files store data in string format.
|
|
// They don't contain other logic for now.
|
|
/datum/computer_file/data
|
|
var/stored_data = "" // Stored data in string format.
|
|
filetype = "DAT" |