shipyard 0.6.2

Entity Component System
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Delete Entity


Deleting an entity deletes it from the entities storage, while also deleting all its components.

## World


```rust, noplaypen
{{#include ../../../../tests/book/delete_entity.rs:world}}
```

## View


```rust, noplaypen
{{#include ../../../../tests/book/delete_entity.rs:view}}
```