How did I get here?
This commit is contained in:
31
src/engine/Engine.hpp
Normal file
31
src/engine/Engine.hpp
Normal file
@@ -0,0 +1,31 @@
|
||||
// Copyright (c) 2025 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
#include "time/Time.hpp"
|
||||
#include "console/Console.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
struct Engine {
|
||||
public:
|
||||
Time time;
|
||||
Console console;
|
||||
|
||||
/**
|
||||
* Constructor for the Dawn engine.
|
||||
*/
|
||||
Engine();
|
||||
|
||||
/**
|
||||
* Update the engine state.
|
||||
*/
|
||||
void update(void);
|
||||
|
||||
/**
|
||||
* Destructor for the Dawn engine.
|
||||
*/
|
||||
~Engine();
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user