2023-02-05 17:42:00: Update class diagram to properly show inheritance
This commit is contained in:
parent
f56161041a
commit
e9c65b4ddf
1 changed files with 11 additions and 10 deletions
21
Classes.md
21
Classes.md
|
@ -31,21 +31,22 @@
|
||||||
|
|
||||||
## Class Inheritance
|
## Class Inheritance
|
||||||
|
|
||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
graph LR
|
graph LR
|
||||||
World
|
World
|
||||||
ActionClassList
|
ActionClassList
|
||||||
SaveVar
|
SaveVar
|
||||||
App --> Window
|
Window --> App
|
||||||
Cam --> CamPath
|
CamPath --> Cam
|
||||||
Entity --> Cam
|
Cam --> Entity
|
||||||
Cam --> FCam
|
FCam --> Cam
|
||||||
Entity --> Obj
|
Obj --> Entity
|
||||||
Obj --> item
|
item --> Obj
|
||||||
Obj --> WithLife
|
WithLife --> Obj
|
||||||
WithLife --> Car
|
Car --> WithLife
|
||||||
WithLife --> WalkChar
|
WalkChar --> WithLife
|
||||||
WithLife --> Missile
|
Missile --> WithLife
|
||||||
```
|
```
|
||||||
|
|
||||||
# Attributes (VMT index 16,17,18 for accessor functions)
|
# Attributes (VMT index 16,17,18 for accessor functions)
|
||||||
|
|
Loading…
Reference in a new issue