diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-05-24 20:57:24 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-05-24 20:57:24 -0300 |
| commit | 3f557369c7bbd08fdf2e6dbd9271873b20a9a144 (patch) | |
| tree | 28bb9b4ad9c0324036d753eea772855a180c37f3 /src/main.cc | |
| parent | b7432b4e74284138f1740f4577b9cb32e1f120d0 (diff) | |
| download | game-3f557369c7bbd08fdf2e6dbd9271873b20a9a144.tar.gz game-3f557369c7bbd08fdf2e6dbd9271873b20a9a144.zip | |
halfway of `map.cc` and start of `objects.cc`
Diffstat (limited to 'src/main.cc')
| -rw-r--r-- | src/main.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc index 1efdf4a..736f2f2 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,5 +1,6 @@ #include "common.hh" #include "config.hh" +#include "map.hh" #include <signal.h> #include <sys/time.h> @@ -222,7 +223,7 @@ static void InitAll(void){ //InitWriter(); //InitReader(); //InitObjects(); - //InitMap(); + InitMap(); //InitInfo(); //InitMoveUse(); //InitMagic(); @@ -246,7 +247,7 @@ static void ExitAll(void){ //ExitMoveUse(); //ExitInfo(); //ExitHouses(); - //ExitMap(SaveMapOn); + ExitMap(SaveMapOn); //ExitObjects(); //ExitReader(); //ExitWriter(); |
