mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-03-26 03:12:38 +00:00
13 lines
272 B
Plaintext
13 lines
272 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) |