diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-06-10 03:32:22 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-06-10 03:32:22 -0300 |
| commit | 699341773dda3ae14a5025b9285bdd05c99bc234 (patch) | |
| tree | a166fcb1fef64f31520a6a26d94a6c83799efce3 /src/main.cc | |
| parent | cd8f3f412c2a5f49ee25aab83079a655b88d6def (diff) | |
| download | game-699341773dda3ae14a5025b9285bdd05c99bc234.tar.gz game-699341773dda3ae14a5025b9285bdd05c99bc234.zip | |
most `info.cc` functions
Diffstat (limited to 'src/main.cc')
| -rw-r--r-- | src/main.cc | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/main.cc b/src/main.cc index 3925b04..bbdebf1 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,6 +1,8 @@ #include "common.hh" #include "config.hh" +#include "info.hh" #include "map.hh" +#include "magic.hh" #include "objects.hh" #include "stubs.hh" @@ -230,10 +232,10 @@ static void InitAll(void){ //InitReader(); InitObjects(); InitMap(); - //InitInfo(); + InitInfo(); //InitMoveUse(); - //InitMagic(); - //InitCr(); + InitMagic(); + InitCr(); //InitHouses(); InitTime(); //ApplyPatches(); @@ -248,10 +250,10 @@ static void ExitAll(void){ EndGame(); ExitTime(); - //ExitCr(); - //ExitMagic(); + ExitCr(); + ExitMagic(); //ExitMoveUse(); - //ExitInfo(); + ExitInfo(); //ExitHouses(); ExitMap(SaveMapOn); ExitObjects(); |
