mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-29 20:14:41 +00:00
20 lines
395 B
C++
20 lines
395 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
|
|
namespace al {
|
|
class SimpleCameraInput;
|
|
|
|
class CameraInputHolder {
|
|
public:
|
|
CameraInputHolder(s32 size);
|
|
void initAfterPlacement();
|
|
SimpleCameraInput* getInput(s32 index) const;
|
|
|
|
private:
|
|
SimpleCameraInput* mDefaultInput = nullptr;
|
|
SimpleCameraInput** mInputs;
|
|
s32 mInputsSize;
|
|
}; // class CameraInputHolder
|
|
} // namespace al
|