12 lines
273 B
C++
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;
|
|
} |