Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Objective - Allow for directly call methods on states without first calling `state.get().my_method()` ## Solution - Implement `Deref` for `State<S>` with `Target = S` --- *I did not implement `DerefMut` because states hold no data and should only be changed via `NextState::set()`*
- Loading branch information