25 lines
688 B
C++
25 lines
688 B
C++
// Copyright (c) 2022 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#include "VisualNovelCharacter.hpp"
|
|
|
|
using namespace Dawn;
|
|
|
|
VisualNovelCharacter::VisualNovelCharacter(SceneItem *item) :
|
|
SceneItemComponent(item)
|
|
{
|
|
}
|
|
|
|
std::vector<SceneItemComponent*> VisualNovelCharacter::getDependencies() {
|
|
return std::vector<SceneItemComponent*>{
|
|
(this->material = this->item->getComponent<SimpleTexturedMaterial>()),
|
|
(this->tiledSprite = this->item->getComponent<TiledSprite>())
|
|
};
|
|
}
|
|
|
|
void VisualNovelCharacter::onStart() {
|
|
assertNotNull(this->material);
|
|
assertNotNull(this->tiledSprite);
|
|
} |