mirror of
https://github.com/gwdevhub/gMod.git
synced 2026-07-19 00:49:31 +00:00
uMod2 Alpha Version: known bugs: I disabled the remove device function inside the gui, because something in the event handling goes terrible wrong.
Implemented a some new features.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user