mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-27 04:03:51 +00:00
Further C-style struct definitions fixes
This commit is contained in:
parent
def238ff08
commit
09e0c04f7b
3 changed files with 20 additions and 17 deletions
|
|
@ -30,7 +30,8 @@ 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;
|
||||
inline bool operator()(const TextureHolder *first, const TextureHolder *second) const
|
||||
{ return first->compareTo(second) >= 0; }
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue