mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
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
|