mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-21 16:27:04 +01:00
16 lines
380 B
Plaintext
16 lines
380 B
Plaintext
//* This file is explicitly licensed under the MIT license. *//
|
|
//* Copyright (c) 2024 Citadel Station Developers *//
|
|
|
|
/**
|
|
* Arbitrary string-sequence combo.
|
|
*/
|
|
/datum/combo
|
|
/// strings, in order, from first to last, in combo
|
|
var/list/keys = list()
|
|
|
|
/datum/combo/New(list/keys = src.keys)
|
|
src.keys = keys
|
|
|
|
/datum/combo/proc/get_length() as num
|
|
return length(keys)
|