This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues/pull-requests.
BlankWorld/global.cpp

14 lines
170 B
C++

#include "global.h"
using namespace MiniEngine;
Window wnd;
Renderer rnd;
Font font;
void ReleaseGlobal()
{
font.release();
rnd.release();
wnd.release();
}