mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Stand-o-rama! * Fix ESLint stuff * Dust on death. * minor code tweaks * Fix spans * use defines to make bibby happy * whatever there'll only be one anyways
10 lines
333 B
Plaintext
10 lines
333 B
Plaintext
/// A very basic component saying that this item is TC-refundable in an uplink.
|
|
/// Refundable items are expected to register COMSIG_ITEM_REFUND themselves.
|
|
/datum/component/refundable
|
|
var/datum/mind/buyer
|
|
var/tc_cost = 0
|
|
|
|
/datum/component/refundable/Initialize(datum/mind/buyer, tc_cost)
|
|
src.buyer = buyer
|
|
src.tc_cost = tc_cost
|