NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
scn_group.hpp
1#pragma once
2
3#include <lib/nw4r/g3d/scn_obj.hpp>
4
5namespace nw4r {
6namespace g3d {
7
8class ScnGroup : public ScnObj {
9public:
10 virtual bool Insert(unsigned long, nw4r::g3d::ScnObj *);
11 virtual void Remove(unsigned long);
12
13 NW4R_G3D_TYPE_OBJ_DECL(ScnGroup);
14
15 ScnObj **objs;
16 u32 reservedCount;
17 u32 count;
18};
19
20} // namespace g3d
21} // namespace nw4r
3D graphics drawing library.
Definition docgroup.h:10