aboutsummaryrefslogtreecommitdiff
path: root/reference/types.hh
diff options
context:
space:
mode:
Diffstat (limited to 'reference/types.hh')
-rw-r--r--reference/types.hh32
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;
-};