From 7fe30185df21617cf44100f89db462cd4501050e Mon Sep 17 00:00:00 2001 From: fusion32 Date: Sun, 18 May 2025 18:54:23 -0300 Subject: implement `matrix` and move containers into their own directory --- reference/types.hh | 34 ---------------------------------- 1 file changed, 34 deletions(-) (limited to 'reference/types.hh') diff --git a/reference/types.hh b/reference/types.hh index 82d001b..d79cf0c 100644 --- a/reference/types.hh +++ b/reference/types.hh @@ -515,14 +515,6 @@ struct THouse { int Help; }; -struct matrix { // Original name: matrix - int xmin; - int ymin; - int dx; - int dy; - ulong *entry; -}; - struct TWaitinglistEntry { struct TWaitinglistEntry *Next; char Name[30]; @@ -698,14 +690,6 @@ struct TShortwayPoint { struct TShortwayPoint *NextToExpand; }; -struct matrix { - int xmin; - int ymin; - int dx; - int dy; - struct TShortwayPoint *entry; -}; - struct TCronEntry { struct Object Obj; ulong RoundNr; @@ -766,16 +750,6 @@ struct TCondition { int Number; }; -struct matrix3d { - int xmin; - int ymin; - int zmin; - int dx; - int dy; - int dz; - struct TSector **entry; -}; - struct TSector { struct Object MapCon[32][32]; ulong TimeStamp; @@ -798,14 +772,6 @@ struct THelpDepot { int DepotNr; }; -struct matrix { - int xmin; - int ymin; - int dx; - int dy; - int *entry; -}; - struct listIterator_> { // Original name: listIterator > struct listnode_> *actNode; }; -- cgit v1.2.3