mirror of
https://github.com/zeldaret/ss
synced 2026-08-13 20:24:26 -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>
14 lines
206 B
C++
14 lines
206 B
C++
#ifndef NW4R_G3D_INIT_H
|
|
#define NW4R_G3D_INIT_H
|
|
#include "common.h"
|
|
#include <rvl/OS.h>
|
|
|
|
namespace nw4r {
|
|
namespace g3d {
|
|
void G3dInit(bool);
|
|
void G3dReset();
|
|
} // namespace g3d
|
|
} // namespace nw4r
|
|
|
|
#endif
|