mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#ifndef __sgGroup__
|
||||
#define __sgGroup__
|
||||
|
||||
/************************************************************************/
|
||||
/* Group */
|
||||
/************************************************************************/
|
||||
class sgCore_API sgCGroup : public sgCObject
|
||||
{
|
||||
protected:
|
||||
sgCGroup();
|
||||
sgCGroup(SG_OBJ_HANDLE);
|
||||
virtual ~sgCGroup();
|
||||
|
||||
IObjectsList* m_children;
|
||||
public:
|
||||
IObjectsList* GetChildrenList() const;
|
||||
virtual bool SetAttribute(SG_OBJECT_ATTR_ID, unsigned short);
|
||||
|
||||
virtual bool ApplyTempMatrix();
|
||||
|
||||
static sgCGroup* CreateGroup(sgCObject** objcts, int cnt);
|
||||
|
||||
bool BreakGroup(sgCObject** objcts);
|
||||
|
||||
PRIVATE_ACCESS
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user