wasmdome-domain 0.0.7

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.