mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-10 09:18:01 +00:00
15 lines
227 B
C++
15 lines
227 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
|
|
namespace al {
|
|
|
|
struct OrthoProjectionInfo {
|
|
f32 nearClipWidth = -1.0f;
|
|
f32 nearClipHeight = -1.0f;
|
|
};
|
|
|
|
static_assert(sizeof(OrthoProjectionInfo) == 0x8);
|
|
|
|
} // namespace al
|