Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
244 changes: 145 additions & 99 deletions docs/ComponentTraits.md

Large diffs are not rendered by default.

160 changes: 104 additions & 56 deletions docs/EntitiesComponents.md

Large diffs are not rendered by default.

12 changes: 9 additions & 3 deletions docs/FlecsRemoteApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ while (world.Progress()) { }
</li>
<li><b class="tab-title">Rust</b>

```rust
```rust test
HIDE: return; //compile-only
HIDE: let world = World::new();
// Optional, gather statistics for explorer
world.import::<stats::Stats>();

Expand Down Expand Up @@ -118,7 +120,9 @@ world.App()
</li>
<li><b class="tab-title">Rust</b>

```rust
```rust test
HIDE: return; //compile-only
HIDE: let world = World::new();
world
.app()
// Optional, gather statistics for explorer
Expand Down Expand Up @@ -334,7 +338,9 @@ while (world.Progress()) { }
</li>
<li><b class="tab-title">Rust</b>

```rust
```rust test
HIDE: return; //compile-only
HIDE: let world = World::new();
// Optional, gather statistics for explorer
world.import::<stats::Stats>();

Expand Down
Loading
Loading