mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 20:15:47 +01:00
Adds the interrupt signal to the delay component, reorganises BCI files and circuit code improvements (#61393)
Co-authored-by: Watermelon914 <3052169-Watermelon914@users.noreply.gitlab.com>
This commit is contained in:
@@ -325,8 +325,20 @@
|
||||
for(var/entry in entries)
|
||||
. += create_ui_notice("Column Name: '[entry]'", "grey", "columns")
|
||||
|
||||
/obj/item/circuit_component/proc/register_usb_parent(atom/movable/parent)
|
||||
/**
|
||||
* Called when a circuit component is added to an object with a USB port.
|
||||
*
|
||||
* Arguments:
|
||||
* * shell - The object that USB cables can connect to
|
||||
*/
|
||||
/obj/item/circuit_component/proc/register_usb_parent(atom/movable/shell)
|
||||
return
|
||||
|
||||
/obj/item/circuit_component/proc/unregister_usb_parent(atom/movable/parent)
|
||||
/**
|
||||
* Called when a circuit component is removed from an object with a USB port.
|
||||
*
|
||||
* Arguments:
|
||||
* * shell - The object that USB cables can connect to
|
||||
*/
|
||||
/obj/item/circuit_component/proc/unregister_usb_parent(atom/movable/shell)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user