module Gamefic::Scriptable::Hooks

def on_player_update(&block)

Other tags:
    Yieldparam: -
def on_player_update(&block)
  update_blocks.push(proc { players.each { |player| instance_exec(player, &block) } })
end