-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ version = "0.1.0" | |
authors = ["Awesome Person [email protected]"] | ||
|
||
[dependencies] | ||
ggez = "0.5.0-rc.0" | ||
ggez = "0.5" | ||
``` | ||
|
||
### ✔ Check Project Setup | ||
|
@@ -165,7 +165,7 @@ let (ref mut ctx, ref mut event_loop) = ContextBuilder::new("hello_ggez", "aweso | |
``` | ||
|
||
This will create a `Context` with the `game_id` `hello_ggez` and the author `awesome_person`. | ||
It will also create an [`EventsLoop`](https://docs.rs/ggez/0.4.0/event/struct.EventsLoop.html). | ||
It will also create an [`EventsLoop`](https://docs.rs/ggez/0.4.0/event/struct.EventsLoop.html). | ||
We'll need it in a minute to call [`run`](https://docs.rs/ggez/0.4.0/ggez/event/fn.run.html). | ||
Feel free to replace the author with yourself. | ||
You are awesome after all. | ||
|