Merge tag '0.15.4' into develop

Refine EntityIdentifier
This commit is contained in:
Christian Treffs 2020-08-21 08:41:19 +02:00
commit 5696b5612d
No known key found for this signature in database
GPG Key ID: 49A4B4B460BE3ED4
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ import PackageDescription
let package = Package(
name: "YourPackageName",
dependencies: [
.package(url: "https://github.com/fireblade-engine/ecs.git", from: "0.15.3")
.package(url: "https://github.com/fireblade-engine/ecs.git", from: "0.15.4")
],
targets: [
.target(
@ -71,7 +71,7 @@ then create entities by letting the `Nexus` generate them.
let newEntity = nexus.createEntity()
```
To define components conform your class to the `Component` protocol
To define components, conform your class to the `Component` protocol
```swift
final class Position: Component {