mirror of
https://github.com/gwdevhub/gMod.git
synced 2026-07-16 07:29:30 +00:00
0bc7eebede
Implemented a some new features.
19 lines
318 B
C++
19 lines
318 B
C++
/*
|
|
* uMod_ModElement.cpp
|
|
*
|
|
* Created on: 26.06.2012
|
|
* Author: marts
|
|
*/
|
|
|
|
|
|
#include "uMod_Main.h"
|
|
|
|
|
|
int Compare_uMod_TextureElement(uMod_TextureElement* a,uMod_TextureElement* b)
|
|
{
|
|
if ( a->Hash() < b->Hash()) return -1;
|
|
else if ( a->Hash() == b->Hash()) return 0;
|
|
else return +1;
|
|
}
|
|
|