-
Notifications
You must be signed in to change notification settings - Fork 0
Home
buckeye43210 edited this page Jun 16, 2023
·
1 revision
Welcome to the sandbox wiki!
Example Mermaid Diagram
- mermaid
Creature <|-- Superman
Creature <|-- Vampire
Creature <|-- Diavolo
Creature: +int size
Creature: +int weight
Creature: +isBenign()
Creature: +power()
class Superman{
+String currentName
+fly()
+heal()
}
class Vampire{
-int age
-canBite()
}
class Diavolo{
+bool is_serving
+heat()
}