mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
18 lines
349 B
C++
18 lines
349 B
C++
#include "Game/Camera/CameraSubjective.hpp"
|
|
|
|
CameraSubjective::CameraSubjective(const char *pName) : Camera(pName) {
|
|
_4C = 0.0f;
|
|
_50 = 0.0f;
|
|
_54 = 0.0f;
|
|
_58 = 0.0f;
|
|
_5C.identity();
|
|
}
|
|
|
|
CameraSubjective::~CameraSubjective() {
|
|
|
|
}
|
|
|
|
CamTranslatorBase *CameraSubjective::createTranslator() {
|
|
return new CamTranslatorDummy(this);
|
|
}
|