Skip to content

Commit

Permalink
Merge pull request #62 from stanoddly/patch-1
Browse files Browse the repository at this point in the history
Fixed minor issues in README.md
  • Loading branch information
genaray authored Jan 2, 2024
2 parents 10ff1ba + a322f56 commit 684ffa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The tools can be used independently of each other.
public struct Position{ float X, Y };
public struct Velocity{ float Dx, Dy };

// BaseSystem provides several usefull methods for interacting and structuring systems
// BaseSystem provides several useful methods for interacting and structuring systems
public class MovementSystem : BaseSystem<World, float>
{
public MovementSystem(World world) : base(world) {}
Expand Down Expand Up @@ -87,4 +87,4 @@ public class Game
_systems.Dispose(); // Calls .Dispose on all systems ( can be overriden )
}
}
```**
```

0 comments on commit 684ffa6

Please sign in to comment.