diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-06-06 19:36:18 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-06-06 19:36:18 -0300 |
| commit | 76f6ecb7c809c6e93447efb91bdf50f2a9d50d6b (patch) | |
| tree | ece58733660361874acc912208d6482d639e556e /src/map.cc | |
| parent | 850fa1c0e128a4fe05ffdbdabc9dad25a7530a3f (diff) | |
| download | game-76f6ecb7c809c6e93447efb91bdf50f2a9d50d6b.tar.gz game-76f6ecb7c809c6e93447efb91bdf50f2a9d50d6b.zip | |
some work on `crmain.cc` and `cract.cc` + merge creature headers
Diffstat (limited to 'src/map.cc')
| -rw-r--r-- | src/map.cc | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -8,21 +8,21 @@ #include <dirent.h> -static int OBCount; -static int SectorXMin; -static int SectorXMax; -static int SectorYMin; -static int SectorYMax; -static int SectorZMin; -static int SectorZMax; -static int RefreshedCylinders; -static int NewbieStartPositionX; -static int NewbieStartPositionY; -static int NewbieStartPositionZ; -static int VeteranStartPositionX; -static int VeteranStartPositionY; -static int VeteranStartPositionZ; +int SectorXMin; +int SectorXMax; +int SectorYMin; +int SectorYMax; +int SectorZMin; +int SectorZMax; +int RefreshedCylinders; +int NewbieStartPositionX; +int NewbieStartPositionY; +int NewbieStartPositionZ; +int VeteranStartPositionX; +int VeteranStartPositionY; +int VeteranStartPositionZ; +static int OBCount; static matrix3d<TSector*> *Sector; static TObjectBlock **ObjectBlock; static TObject *FirstFreeObject; |
