Initial commit.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
|
||||
#ifndef GROUP_H
|
||||
#define GROUP_H
|
||||
|
||||
class Group{
|
||||
|
||||
vector<Object*> _objs;
|
||||
|
||||
public:
|
||||
Group( Object *obj );
|
||||
~Group();
|
||||
|
||||
const vector<Object*> objs()const{ return _objs; }
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user