24 lines
367 B
C++
24 lines
367 B
C++
// Copyright (c) 2022 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#include "SceneItem.hpp"
|
|
#include "Scene.hpp"
|
|
|
|
using namespace Dawn;
|
|
|
|
SceneItem::SceneItem(Scene &scene, sceneitemid_t id) :
|
|
scene(scene),
|
|
id(id)
|
|
{
|
|
this->id = id;
|
|
}
|
|
|
|
void SceneItem::init() {
|
|
|
|
}
|
|
|
|
SceneItem::~SceneItem() {
|
|
|
|
} |