Création du menu principal et des fichiers de config des atomes et des molécules

This commit is contained in:
2023-11-02 12:25:50 +01:00
parent 72cde93ea0
commit 2c93918e51
95 changed files with 15135 additions and 245 deletions

17
Cfg/atoms.json Normal file
View File

@ -0,0 +1,17 @@
[
{
"id": "hydrogene",
"name": "Hydrogène",
"description": ""
},
{
"id": "oxygene",
"name": "Oxygène",
"description": ""
},
{
"id": "carbone",
"name": "Carbonne",
"description": ""
}
]

5
Cfg/global.json Normal file
View File

@ -0,0 +1,5 @@
{
"app_name": "T-VIR-901",
"version": 0.1,
"last_update_date": "02/11/2023 - 11:31"
}

32
Cfg/molecules.json Normal file
View File

@ -0,0 +1,32 @@
[
{
"id": "eau",
"name": "eau",
"description": "blabla 1",
"compo": [
{
"atom_id": "hydrogene",
"nbr": 2
},
{
"atom_id": "oxygene",
"nbr": 1
}
]
},
{
"id": "dioxyde_carbone",
"name": "Dioxyde de carbone",
"description": "blabla 2",
"compo": [
{
"atom_id": "carbone",
"nbr": 1
},
{
"atom_id": "oxygene",
"nbr": 2
},
]
}
]