mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-29 20:14:41 +00:00
15 lines
284 B
C++
15 lines
284 B
C++
#pragma once
|
|
|
|
#include <math/seadVector.h>
|
|
|
|
namespace al {
|
|
class IUseCamera;
|
|
class Projection;
|
|
|
|
Projection getProjection(const IUseCamera*, s32);
|
|
|
|
sead::Vector3f* getCameraPos(const IUseCamera*, s32);
|
|
void calcCameraUpDir(sead::Vector3f*, const IUseCamera*, s32);
|
|
|
|
} // namespace al
|