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 /reference/types.hh | |
| 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 'reference/types.hh')
| -rw-r--r-- | reference/types.hh | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/reference/types.hh b/reference/types.hh index 6840fc3..42caab1 100644 --- a/reference/types.hh +++ b/reference/types.hh @@ -1,15 +1,9 @@ struct TXTEASymmetricKey { int (**_vptr.TXTEASymmetricKey)(...); // VTABLE? - uint8 m_SymmetricKey[16]; + uchar m_SymmetricKey[16]; }; - -// NOTE(fusion): Some minimal processing up until here. Then I realized the file would be huge. -//================================================================================================== -//================================================================================================== -//================================================================================================== - struct TDatabasePoolConnection { TDatabaseConnectionPool *DatabaseConnectionPool; TDatabaseConnection *DatabaseConnection; @@ -131,16 +125,6 @@ struct TDelayedMail { int PacketSize; }; -struct TShortwayPoint { - int x; - int y; - int Waypoints; - int Waylength; - int Heuristic; - struct TShortwayPoint *Predecessor; - struct TShortwayPoint *NextToExpand; -}; - struct TMonsterhome { int Race; int x; @@ -153,8 +137,6 @@ struct TMonsterhome { int Timer; }; - - struct TChannel { ulong Moderator; char ModeratorName[30]; @@ -394,15 +376,3 @@ struct TRSAPrivateKey { struct vlong m_DP; struct vlong m_DQ; }; - -struct TShortway { - struct matrix<TShortwayPoint> *Map; - struct TShortwayPoint *FirstToExpand; - struct TCreature *cr; - int VisibleX; - int VisibleY; - int StartX; - int StartY; - int StartZ; - int MinWaypoints; -}; |
