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