mirror of
https://github.com/zeldaret/ss
synced 2026-05-31 01:15:38 -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>
18 lines
202 B
C++
18 lines
202 B
C++
#ifndef M_VIDEO_H
|
|
#define M_VIDEO_H
|
|
|
|
#include <egg/core/eggVideo.h>
|
|
|
|
namespace mVideo {
|
|
|
|
// 0x80065590
|
|
void create();
|
|
|
|
extern EGG::Video *m_video;
|
|
|
|
extern f32 l_fbAspect;
|
|
|
|
} // namespace mVideo
|
|
|
|
#endif
|