mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -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>
28 lines
545 B
C++
28 lines
545 B
C++
#ifndef EGG_SCREEN_H
|
|
#define EGG_SCREEN_H
|
|
|
|
#include <common.h>
|
|
#include <egg/gfx/eggFrustum.h>
|
|
|
|
namespace EGG {
|
|
|
|
// TODO: Fill out more
|
|
class Screen : public Frustum {
|
|
public:
|
|
Screen();
|
|
Screen(f32, f32, f32, f32, Screen *, CanvasMode);
|
|
|
|
virtual ~Screen();
|
|
virtual void SetProjectionGX() const override;
|
|
virtual void CopyToG3D(nw4r::g3d::Camera) const override;
|
|
|
|
static void Initialize(const u16 *, const u16 *, Screen *);
|
|
static void SetTVModeDefault();
|
|
|
|
u8 TODO_0x3C[0x88 - 0x3C];
|
|
};
|
|
|
|
} // namespace EGG
|
|
|
|
#endif
|