More Progress

This commit is contained in:
2022-10-18 15:23:50 -07:00
parent 0ec2809d88
commit 6f10535962
45 changed files with 7994 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "dawnlibs.hpp"
namespace Dawn {
class DawnGame;
class RenderManager {
public:
std::weak_ptr<DawnGame> game;
RenderManager(std::weak_ptr<DawnGame>);
void init();
void update();
~RenderManager();
};
}