New branch

This commit is contained in:
Shadow15510 2021-10-10 15:56:03 +02:00
parent d680ed46ac
commit 1636be62e0
2 changed files with 31 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,2 +0,0 @@
build-fx/
*.g1a

31
src/calccity.h Normal file
View File

@ -0,0 +1,31 @@
#ifndef _CALCCITY_H
#define _CALCCITY_H
struct calccity =
{
// human's statistics = {happyness, health, education, housing, work, food, transport, grabage, graves}
signed long statistics[9] = {0};
// population evolution = {birth, death, immigration, emmigration}
// production = {water, power}
signed long production[2] = {0};
// consumption = {water, power}
signed long consumption[2] = {0};
// risks and safety = {crime, safety, fire_hazard, nuclear_hazard, pollution}
signed long risks[5] = {0};
// taxes on {housing, trade, industry, export}
int taxes[4] = {10, 10, 10, 10};
// industry statistics = {import, export, production, commercial, industrial, }
};
struct mouse =
{
};
#endif /* _CALCCITY_H */