From a85801125959375c49738deb182d76999715d64e Mon Sep 17 00:00:00 2001 From: hoj-senna <53797493+hoj-senna@users.noreply.github.com> Date: Tue, 6 Aug 2019 01:00:58 +0200 Subject: [PATCH] Remove paragraph referencing removed file (#8) Remove description of src/render.rs (src/render.rs had been removed from the project, so there is no need to describe it in the readme.) --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 493f3f9..edddd1a 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,6 @@ This project contains the minimum amount of code needed to draw sprites to the s - `src/main.rs` Creates the render graph, adds the required bundles, builds the game data with our own state and finally, starts the game's main event loop. -- `src/render.rs` - Configures the RenderGraph, which defines draw passes, color formats and so on. - - `src/state.rs` Implements the main game state. In the `on_start` hook, the camera is initialized, and the sprites that will be drawn are loaded and their entities created. In the `handle_event` hook, we print any keys that were pressed and close the window if the user presses escape or the OS requests that we quit.