Skip to content

Commit

Permalink
Add CCameraManager.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
henriquegemignani committed Sep 5, 2024
1 parent 31ff5cf commit 4f0198a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions include/MetroidPrime/CCameraManager.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#ifndef _CCAMERAMANAGER
#define _CCAMERAMANAGER

class CGameCamera;
class CStateManager;

class CCameraManager {
public:
const CGameCamera* GetCurrentCamera(const CStateManager&, int) const;

static const CGameCamera* CastGameCameratoFirstPersonCamera(const CGameCamera*);
};

#endif // _CCAMERAMANAGER

0 comments on commit 4f0198a

Please sign in to comment.