diff --git a/README.md b/README.md index 8c65595..c2c9544 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ pub const plugin: App.plugin.Plugin = .{ **System** ``` zig -pub fn render(ctx: App.scheduler.Context) !void { +pub fn render(app: *App) !void { // --- GET RESOURCES --- - const res = try ctx.app.resources.getMany(struct { + const res = try app.resources.getMany(struct { window: *Window, device: *Device, render_frame: ?*RenderFrame,