1#pragma once
2
3#include <basis/seadTypes.h>
4
5namespace al {
6
7struct OrthoProjectionInfo {
8 f32 nearClipWidth = -1.0f;
9 f32 nearClipHeight = -1.0f;
10};
11
12static_assert(sizeof(OrthoProjectionInfo) == 0x8);
13
14} // namespace al
15