[nostalgia/core] Rename event handler to update handler

This commit is contained in:
2022-03-19 20:11:53 -05:00
parent 8e660f6b15
commit 2223fe7863
9 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ ox::Error run(Context *ctx) noexcept {
return OxError(0);
}
void setEventHandler(Context *ctx, event_handler h) noexcept {
void setUpdateHandler(Context *ctx, UpdateHandler h) noexcept {
const auto id = ctx->windowerData<GlfwImplData>();
id->eventHandler = h;
}