Skip to content

Commit 0366c3e

Browse files
Updated readme
1 parent 4674691 commit 0366c3e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ It's recommended to build your entire project around these life cycle methods.
5858

5959
### Controllers
6060

61-
The controller is the core of your application, it is of such importance that each application should only contain ome of it. The controller is where your application will start from and all systems and services are registered. This can only be done during the OnInitialize method using the controller's Register method. For the controller to work it should be assined to one game object in your scene.
61+
The controller is the core of your application, it is of such importance that each application should only contain one of it. The controller is where your application will start from and all systems and services are registered. This can only be done during the OnInitialize method using the controller's Register method.
62+
63+
To get started with your first controller you can generate one using the generator, for the controller to work it should be assined to one game object in your scene. Your first controller should at least consist of invoking the register method.
6264

6365
```csharp
6466
public class MainController : Controller {

0 commit comments

Comments
 (0)