wasmdome-domain 0.0.1

Event Sourced Domain Model for the 'Assembly Mechs: Beyond WasmDome' Game
Documentation
# Assembly Mechs: Beyond WasmDome

This crate contains the common _domain logic_ required to perform the match processing. This logic is expressed through _event sourcing_, where commands are handled by an aggregate that results in 1 or more events. Those events can then be applied to the aggregate that results in state changes.

This pattern embraces immutability and enables things like replay and incredibly easy testing because everything is deterministic and predictable.