16 lines
221 B
C++
16 lines
221 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <memory>
|
||
|
|
#include "scene_tree.h"
|
||
|
|
#include "timeline.h"
|
||
|
|
|
||
|
|
BEGIN_NAMESPACE
|
||
|
|
|
||
|
|
struct scene {
|
||
|
|
scene();
|
||
|
|
|
||
|
|
std::shared_ptr<scene_tree> tree;
|
||
|
|
std::shared_ptr<timeline> animation;
|
||
|
|
};
|
||
|
|
|
||
|
|
END_NAMESPACE
|