From 5c2bf51c706d28e79bc6fb9c077298efbab448ae Mon Sep 17 00:00:00 2001 From: lucasstarsz Date: Sun, 23 May 2021 12:00:13 -0400 Subject: [PATCH] update example readme with changes to examples --- src/example/README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/example/README.md b/src/example/README.md index 795e39d6..d05e50ac 100644 --- a/src/example/README.md +++ b/src/example/README.md @@ -12,9 +12,14 @@ Then, run the gradle task `example`. When you do this, you'll need to specify wh ``` _Having trouble using `gradlew`? Read [this][Terminals Are Different]._ -## Example Projects +## Example Programs -### Hello, World! +### Hello, FastJ! +This program is a remarkably simple introduction to starting work with FastJ. It initializes the engine and runs the engine, which results in an empty window. This also can serve as a project template for working with FastJ. + +Command to run: `./gradlew example -Pexample=hellofastj` + +### (Old) Hello, World! This project is an introduction to working with FastJ, and covers many of the essential topics: - Engine Initialization/Running - Window Creation @@ -22,7 +27,7 @@ This project is an introduction to working with FastJ, and covers many of the es - Drawing game objects and UI - Applying Behaviors to Game Objects -Command to run: `./gradlew example -Pexample=helloworld` +Command to run: `./gradlew example -Pexample=oldhelloworld` ### Bullet Hell This project takes the concepts we've learned so far and meshes them together into a game!