Dawn/src/dawn/scene/components/display/mesh/MeshHost.cpp

17 lines
277 B
C++

// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "MeshHost.hpp"
using namespace Dawn;
MeshHost::MeshHost(std::weak_ptr<SceneItem> item) :
mesh(),
SceneItemComponent(item)
{
}