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:
Watermelon914
2021-09-19 08:21:52 +01:00
committed by GitHub
parent f2b6fcb253
commit 21e5cfe8d2
16 changed files with 75 additions and 56 deletions
+14 -2
View File
@@ -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