This repository has been archived on 2022-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
space-war/engine.hpp

34 lines
658 B
C++
Raw Normal View History

2022-01-30 21:24:16 +08:00
#pragma once
#include "pch.hpp"
#include "libmath.hpp"
#include "renderer.hpp"
#include <string>
#include <exception>
class Engine final {
public:
void Init(const std::string& title, const Size& size);
void Shutdown();
void Exit() { shouldExit_ = true; }
bool ShouldExit() const { return glfwWindowShouldClose(window_); }
// TODO implement your logic here
void Update();
// TODO implement your render here
void Render();
GLFWwindow* GetWindow() { return window_; }
void SwapContext();
void PollEvent();
private:
bool shouldExit_ = false;
// window
GLFWwindow* window_;
};
extern Engine engine;