SMG-Decomp
A decompilation of Super Mario Galaxy 1
Loading...
Searching...
No Matches
CameraFooFighterPlanet.cpp
1#include "Game/Camera/CameraFooFighterPlanet.hpp"
2#include "Game/Camera/CamTranslatorFooFighterPlanet.hpp"
3
4CameraFooFighterPlanet::CameraFooFighterPlanet(const char *pName) : Camera(pName) {
5 mAxisX = 500.0f;
6 mAxisY = 2000.0f;
7 mAngleA = 0.7853982f;
8}
9
10CameraFooFighterPlanet::~CameraFooFighterPlanet() {
11
12}
13
14CamTranslatorBase *CameraFooFighterPlanet::createTranslator() {
15 return new CamTranslatorFooFighterPlanet(this);
16}