diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-05-28 00:39:29 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-05-28 00:39:29 -0300 |
| commit | 5505f28c358a50e9d610784303485cc757459162 (patch) | |
| tree | 7756da65dde0d3c125ae71f2ce2afdeb7dc8cd54 /src/main.cc | |
| parent | 42959207914208438261810757abea43422a28fe (diff) | |
| download | game-5505f28c358a50e9d610784303485cc757459162.tar.gz game-5505f28c358a50e9d610784303485cc757459162.zip | |
finish 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 e0cf156..ecdb333 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,6 +1,7 @@ #include "common.hh" #include "config.hh" #include "map.hh" +#include "objects.hh" #include "stubs.hh" @@ -227,7 +228,7 @@ static void InitAll(void){ //InitStrings(); //InitWriter(); //InitReader(); - //InitObjects(); + InitObjects(); InitMap(); //InitInfo(); //InitMoveUse(); @@ -253,7 +254,7 @@ static void ExitAll(void){ //ExitInfo(); //ExitHouses(); ExitMap(SaveMapOn); - //ExitObjects(); + ExitObjects(); //ExitReader(); //ExitWriter(); //ExitStrings(); |
