/* * Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. */ #include "context.hpp" #include "event.hpp" namespace turbine { void setUpdateHandler(Context &ctx, UpdateHandler h) noexcept { ctx.updateHandler = h; } }