Adds acceptance doc for networking UI

* Adds gerkin feature file for networking visualization
* Adds implementation details to networking.md
This commit is contained in:
Jared Tabor
2018-03-26 17:07:23 -07:00
committed by Ben Thomasson
parent 09801d6dab
commit 92dc450940
48 changed files with 2334 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
app: buttons_fsm
finite_state_machine_id: 7
panX: 133
panY: 41
scaleXY: 1
states:
- label: Start
size: 100
x: 392
y: 88
- label: Ready
size: 100
x: 392
y: 281
- label: ButtonPressed
size: 100
x: 394
y: 491
transitions:
- from_state: Start
label: start
to_state: Ready
- from_state: Ready
label: onMouseDown
to_state: ButtonPressed
- from_state: ButtonPressed
label: onMouseUp
to_state: Ready