mirror of
https://github.com/quotefox/Hyper-Station-13.git
synced 2026-04-09 19:50:41 +01:00
9 lines
254 B
Plaintext
9 lines
254 B
Plaintext
/mob
|
|
var/datum/focus //What receives our keyboard inputs. src by default
|
|
|
|
/mob/proc/set_focus(datum/new_focus)
|
|
if(focus == new_focus)
|
|
return
|
|
focus = new_focus
|
|
reset_perspective(focus) //Maybe this should be done manually? You figure it out, reader
|