From 01797fe0be4b34b1a6c66057f1ac80b362df655b Mon Sep 17 00:00:00 2001 From: Gabriele Picco Date: Sun, 28 Jan 2024 11:36:10 +0100 Subject: [PATCH] :memo: Update system/component cli command --- src/getting_started/create_component.md | 2 +- src/getting_started/create_system.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/getting_started/create_component.md b/src/getting_started/create_component.md index efd1206..9bbee06 100644 --- a/src/getting_started/create_component.md +++ b/src/getting_started/create_component.md @@ -5,7 +5,7 @@ Components are plain data structures (classes or structs) that contain data rele Create a Position component with ``` -bolt component -n position +bolt component position ``` which will add a new component to your workspace: diff --git a/src/getting_started/create_system.md b/src/getting_started/create_system.md index 75270aa..af16037 100644 --- a/src/getting_started/create_system.md +++ b/src/getting_started/create_system.md @@ -5,7 +5,7 @@ Systems contain the logic that processes and manipulates entities based on their Create a movement system with with ``` -bolt system -n system-movement +bolt system system-movement ``` which will add a new system to your workspace: