From e9c65b4ddf8c6fafa86359b2581e9ccfd3caed12 Mon Sep 17 00:00:00 2001 From: Daniel Seiller Date: Sun, 5 Feb 2023 17:42:03 +0100 Subject: [PATCH] 2023-02-05 17:42:00: Update class diagram to properly show inheritance --- Classes.md | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Classes.md b/Classes.md index 5d463b6..6448814 100644 --- a/Classes.md +++ b/Classes.md @@ -31,21 +31,22 @@ ## Class Inheritance + ```mermaid graph LR World ActionClassList SaveVar - App --> Window - Cam --> CamPath - Entity --> Cam - Cam --> FCam - Entity --> Obj - Obj --> item - Obj --> WithLife - WithLife --> Car - WithLife --> WalkChar - WithLife --> Missile + Window --> App + CamPath --> Cam + Cam --> Entity + FCam --> Cam + Obj --> Entity + item --> Obj + WithLife --> Obj + Car --> WithLife + WalkChar --> WithLife + Missile --> WithLife ``` # Attributes (VMT index 16,17,18 for accessor functions)