Dawn/src/dawn/scene/components/DummyComponent.cpp
2022-10-18 15:23:50 -07:00

12 lines
273 B
C++

// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "DummyComponent.hpp"
using namespace Dawn;
void DummyComponent::start() {
std::cout << "Dummy Component Start" << std::endl;
}