diff options
author | ClarkeCode <33846391+ClarkeCode@users.noreply.github.com> | 2023-03-22 18:33:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 18:33:29 +0100 |
commit | 65dfeae1641d091d74d22372146a2a7cb4b19f8e (patch) | |
tree | e0f6060b4e72a1a0f7dad4c94ce12264bc139381 /docs/simulation/ideologies.md | |
parent | eb87e2af53bd693e04739aaee84fde408e72f3a9 (diff) | |
parent | 000ede9303e071e69a7dace95117d593ebcb92aa (diff) |
Merge pull request #68 from OpenVic2Project/docs-architecture-and-schema
Docs architecture and schema
Diffstat (limited to 'docs/simulation/ideologies.md')
-rw-r--r-- | docs/simulation/ideologies.md | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/simulation/ideologies.md b/docs/simulation/ideologies.md index 4d91056..f56cda7 100644 --- a/docs/simulation/ideologies.md +++ b/docs/simulation/ideologies.md @@ -9,16 +9,17 @@ classDiagram class IdeologicalGroup { <<enumeration>> - Facist + Fascist Conservative Socialist Liberal } class Ideology { + + String id + IdeologicalGroup group - + Date earliest_date - + boolean uncivilized_nations + + Date earliestDate + + boolean uncivilizedNations + Colour colour } @@ -38,7 +39,7 @@ classDiagram |anarcho_liberal|liberal|1845/01/01|True|#96960A| |socialist|socialist|1860/01/01|False|#FF0000| |communist|socialist|1865/01/01|False|#960A0A| -|facist|facist|1905/01/01|False|#3C3C3C| +|fascist|fascist|1905/01/01|False|#3C3C3C| ### John Cena @@ -50,7 +51,7 @@ classDiagram |anarcho_liberal|liberal|1845/01/01|True|#96960A| |socialist|socialist|1860/01/01|False|#FF0000| |communist|socialist|1865/01/01|False|#960A0A| -|facist|facist|1905/01/01|False|#3C3C3C| +|fascist|fascist|1905/01/01|False|#3C3C3C| ## References |