From 76f6ecb7c809c6e93447efb91bdf50f2a9d50d6b Mon Sep 17 00:00:00 2001 From: fusion32 Date: Fri, 6 Jun 2025 19:36:18 -0300 Subject: some work on `crmain.cc` and `cract.cc` + merge creature headers --- reference/types.hh | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) (limited to 'reference/types.hh') 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 *Map; - struct TShortwayPoint *FirstToExpand; - struct TCreature *cr; - int VisibleX; - int VisibleY; - int StartX; - int StartY; - int StartZ; - int MinWaypoints; -}; -- cgit v1.2.3