19 lines
405 B
C++
19 lines
405 B
C++
/**
|
|
* Copyright (c) 2023 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#include "main.hpp"
|
|
#include "host/DawnGLFWHost.hpp"
|
|
|
|
using namespace Dawn;
|
|
|
|
int32_t main(const int32_t argc, const char_t **argv) {
|
|
std::shared_ptr<DawnGLFWHost> host = std::make_shared<DawnGLFWHost>();
|
|
host->init(argc, argv);
|
|
host->start();
|
|
|
|
return 0;
|
|
} |