mirror of
https://github.com/rrika/cdcEngineDXHR.git
synced 2024-11-23 05:29:57 +00:00
33 lines
631 B
C++
33 lines
631 B
C++
#pragma once
|
|
#include <cstdlib>
|
|
#include "cdcScene.h"
|
|
#include "SceneCellContainer.h"
|
|
#include "SceneCellGroup.h"
|
|
#include "SceneSubCell.h"
|
|
|
|
namespace cdc {
|
|
|
|
class CommonRenderModelInstance;
|
|
class SceneSubCell;
|
|
|
|
class SceneCell :
|
|
public ISceneCell,
|
|
public SceneCellContainer
|
|
{
|
|
public:
|
|
SceneSubCell *subCells = nullptr;
|
|
uint16_t numSubCells = 0;
|
|
// CellBlob *blob; // A8
|
|
CommonRenderModelInstance *renderModelInstance = nullptr; // C8
|
|
public:
|
|
SceneCell(SceneCellGroup *group) : SceneCellContainer(group->scene0, group) {
|
|
// TODO
|
|
subCells = new SceneSubCell[1];
|
|
numSubCells = 1;
|
|
}
|
|
|
|
// 28 methods from ISceneCell
|
|
};
|
|
|
|
}
|