mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
21 lines
489 B
C++
21 lines
489 B
C++
#pragma once
|
|
|
|
#include "revolution.h"
|
|
|
|
class CameraParamChunkHolder;
|
|
|
|
class GameCameraCreator {
|
|
public:
|
|
GameCameraCreator(CameraParamChunkHolder *);
|
|
|
|
void initCameraCodeCollection(const char *, long);
|
|
void registerCameraCode(unsigned long);
|
|
void termCameraCodeCollection();
|
|
void scanStartPos(); // TODO
|
|
void scanArea(); // TODO
|
|
|
|
CameraParamChunkHolder *mChunkHolder; // 0x0
|
|
const char *_4;
|
|
s32 _8;
|
|
u8 mCodes[0x100]; // 0xC
|
|
}; |