mirror of
https://github.com/KabKebab/GS13.git
synced 2026-02-09 23:27:37 +00: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
|