all: rename setShouldClose to close

Closes #550
This commit is contained in:
Ali Chraghi 2022-09-18 19:22:03 +04:30 committed by Stephen Gutekanst
parent 308d413f09
commit 15dfb2867a
15 changed files with 21 additions and 21 deletions

View file

@ -82,5 +82,5 @@ pub fn init(_: *App, core: *mach.Core) !void {
pub fn deinit(_: *App, _: *mach.Core) void {}
pub fn update(_: *App, core: *mach.Core) !void {
core.setShouldClose(true);
core.close();
}