mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 23:58:07 +01:00
[MIRROR] Adds the interrupt signal to the delay component, reorganises BCI files and circuit code improvements (#8264)
* 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> * Adds the interrupt signal to the delay component, reorganises BCI files and circuit code improvements Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com> Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com>
This commit is contained in:
co-authored by
Watermelon914
Watermelon914
parent
b7c5c84066
commit
f817ed6387
@@ -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