mirror of
https://github.com/zeldaret/ss
synced 2026-06-02 10:10:13 -04:00
1180e1f486
* Initial M3d Pass * `m_bmdl` and `m_bline` left --------- Co-authored-by: elijah-thomas774 <elijahthomas774@gmail.com> Co-authored-by: Elijah Thomas <42302100+elijah-thomas774@users.noreply.github.com>
22 lines
345 B
C++
22 lines
345 B
C++
#ifndef M_M3D_PROC_H
|
|
#define M_M3D_PROC_H
|
|
|
|
#include <common.h>
|
|
#include <m/m3d/m_scnleaf.h>
|
|
|
|
namespace m3d {
|
|
|
|
class proc_c : public scnLeaf_c {
|
|
public:
|
|
virtual ~proc_c();
|
|
virtual int getType() const override;
|
|
bool create(mAllocator_c *, u32 *);
|
|
|
|
virtual void drawOpa();
|
|
virtual void drawXlu();
|
|
};
|
|
|
|
} // namespace m3d
|
|
|
|
#endif
|