commit x64 compilation from lulu cause the other branch dont seems to compile properly at home
This commit is contained in:
20
include/engine/ui/ui_group.cpp
Normal file
20
include/engine/ui/ui_group.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
/* -----------------------------------------------------------------------------
|
||||
GSFramework
|
||||
Copyright 2001-2013 Emmanuel Julien. All Rights Reserved.
|
||||
----------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
#include "ui/ui_group.h"
|
||||
|
||||
using namespace GS::S2D;
|
||||
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
bool Group::IsMember(const Item *item) const
|
||||
{
|
||||
ListForeachPtr(Item *, i, item_list)
|
||||
if (i == item)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
Reference in New Issue
Block a user