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
|
||||
|
||||
|
||||
```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)
|
||||
|
|
Loading…
Reference in a new issue