Just™ Game Engine
renderer.hpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022 Konstanty Misiak
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#pragma once
8#include "jng/core/base.hpp"
9
10namespace jng::Renderer {
11
12 void init();
13 void shutdown();
14
15} // namespace jng::Renderer
Definition: renderer.hpp:10
void shutdown()
Definition: renderer.cpp:18
void init()
Definition: renderer.cpp:13