mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 22:27:43 +00:00
Various CStateManager additions and camera stubs
This commit is contained in:
23
Runtime/Camera/CPathCamera.hpp
Normal file
23
Runtime/Camera/CPathCamera.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef __URDE_CPATHCAMERA_HPP__
|
||||
#define __URDE_CPATHCAMERA_HPP__
|
||||
|
||||
#include "CGameCamera.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CPathCamera : public CGameCamera
|
||||
{
|
||||
public:
|
||||
enum class EInitialSplinePosition
|
||||
{
|
||||
};
|
||||
CPathCamera(TUniqueId, const std::string& name, const CEntityInfo& info,
|
||||
const zeus::CTransform& xf, bool, bool, bool, bool, bool,
|
||||
float, float, float, float, float, float, float, u32,
|
||||
EInitialSplinePosition);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __URDE_CPATHCAMERA_HPP__
|
||||
Reference in New Issue
Block a user