aboutsummaryrefslogtreecommitdiff
path: root/reference/types.hh
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-05-18 18:54:23 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-05-18 18:54:23 -0300
commit7fe30185df21617cf44100f89db462cd4501050e (patch)
treebc22eb6b6104094814628e2084f51d0129f9d83d /reference/types.hh
parent1378f2c7ddbdc0e5f3b1b9adc68b6e53eb3e5bfd (diff)
downloadgame-7fe30185df21617cf44100f89db462cd4501050e.tar.gz
game-7fe30185df21617cf44100f89db462cd4501050e.zip
implement `matrix` and move containers into their own directory
Diffstat (limited to 'reference/types.hh')
-rw-r--r--reference/types.hh34
1 files changed, 0 insertions, 34 deletions
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<long_unsigned_int> { // Original name: matrix<long unsigned int>
- 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<TShortwayPoint> {
- 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<TSector*> {
- 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> {
- int xmin;
- int ymin;
- int dx;
- int dy;
- int *entry;
-};
-
struct listIterator<storeunit<TPlayerIndexLeafNode,_100>_> { // Original name: listIterator<storeunit<TPlayerIndexLeafNode, 100> >
struct listnode<storeunit<TPlayerIndexLeafNode,_100>_> *actNode;
};