mirror of
https://github.com/goonstation/goonstation-2020.git
synced 2026-07-12 07:32:20 +01:00
13 lines
260 B
Plaintext
13 lines
260 B
Plaintext
/datum/tag/input
|
|
New(var/type as text)
|
|
..("input")
|
|
selfCloses = 1
|
|
|
|
proc/setType(var/type as text)
|
|
setAttribute("type", type)
|
|
|
|
proc/setValue(var/value as text)
|
|
setAttribute("value", value)
|
|
|
|
proc/setName(var/name as text)
|
|
setAttribute("name", name) |