mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-22 23:56:38 +01:00
14 lines
437 B
Plaintext
14 lines
437 B
Plaintext
//* This file is explicitly licensed under the MIT license. *//
|
|
//* Copyright (c) 2025 Citadel Station Developers *//
|
|
|
|
/**
|
|
* A role is something you can join the game as, usually from the lobby or from the observer panel.
|
|
*/
|
|
/datum/prototype/role
|
|
abstract_type = /datum/prototype/role
|
|
|
|
/datum/prototype/role/can_be_unloaded()
|
|
// We have round-local temporaries.
|
|
// TODO: but do we really? should we, really?
|
|
return FALSE
|