aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-12 12:42:46 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-12 12:42:46 +0200
commit31dbd326f69656473067dde6d4f008cd7c04f0b1 (patch)
tree6cc6df2ef6eaedefad81532c9e6f3202b4d0fdd6 /docs
parent12a719a9fd9b8e89159c407c3b612b226c860778 (diff)
begin visualization
Diffstat (limited to 'docs')
-rw-r--r--docs/class-diag.puml10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/class-diag.puml b/docs/class-diag.puml
index a59f531..0da5b0f 100644
--- a/docs/class-diag.puml
+++ b/docs/class-diag.puml
@@ -191,12 +191,18 @@ rectangle Group_Model as "Model" <<group>> {
}
rectangle "Visualization" <<group>> {
+ struct Rectangle {
+ x : unsigned int
+ y : unsigned int
+ width : unsigned int
+ height : unsigned int
+ }
+
package SDL2 { }
class View {
-
}
class ViewController {
-
+ + update()
}
ViewController --> View