14 lines
170 B
C++
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();
|
|
}
|