14 lines
248 B
C++
14 lines
248 B
C++
/*
|
|
* 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;
|
|
}
|
|
|
|
} |