This commit is contained in:
JuiceyDev
2026-03-06 07:31:16 +01:00
parent 17ac8deddf
commit 9dd73aaa0d
11 changed files with 50 additions and 58 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ public:
int compareTo(const TextureHolder *other) const;
};
typedef struct
struct TextureHolderLessThan
{
bool operator() (const TextureHolder *first, const TextureHolder *second) const { return first->compareTo(second) >= 0; }
} TextureHolderLessThan;
};