This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+28
View File
@@ -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