Update README

This commit is contained in:
Trevor Slocum 2022-06-13 14:51:18 -07:00
parent 945186bd28
commit d6e9439273
2 changed files with 9 additions and 9 deletions

View File

@ -17,14 +17,14 @@ An [example game](https://rocketnine.itch.io/gohan-twinstick?secret=gohan) is in
Please share issues and suggestions [here](https://code.rocketnine.space/tslocum/gohan/issues).
## List of games powered by Gohan
## Games powered by Gohan
- **Fish Fight Back**
- [Play game](https://rocketnine.itch.io/fishfightback)
- [View source code](https://code.rocketnine.space/tslocum/fishfightback)
- [Play](https://rocketnine.itch.io/fishfightback)
- [Source code](https://code.rocketnine.space/tslocum/fishfightback)
- **Brown Box Bat Man**
- [Play game](https://rocketnine.itch.io/brownboxbatman)
- [View source code](https://code.rocketnine.space/tslocum/brownboxbatman)
- [Play](https://rocketnine.itch.io/brownboxbatman)
- [Source code](https://code.rocketnine.space/tslocum/brownboxbatman)
- **Monovania**
- [Play game](https://rocketnine.itch.io/monovania)
- [View source code](https://code.rocketnine.space/tslocum/monovania)
- [Play](https://rocketnine.itch.io/monovania)
- [Source code](https://code.rocketnine.space/tslocum/monovania)

4
doc.go
View File

@ -21,7 +21,7 @@ Each component is assigned a unique ID, starting with 1.
System
Each system runs continuously, performing actions on every Entity that fits
Each system runs continuously, performing actions on every entity that fits
each systems' set of required matching components.
type ExampleSystem struct {
@ -44,7 +44,7 @@ within them, as all logic should be implemented within a system.
System Design Guidelines
Systems are located in a separate package, typically named system. They should
be private (start with a lowercase letter) and offer an instantiation function
be public (start with an uppercase letter) and offer an instantiation function
named as follows: NewSystemNameHere(). Data should be stored within components
attached to one or more entities, rather than within the systems themselves.
References to components must not be maintained outside each Update and Draw