verus/Verus/src/App/App.h

18 lines
270 B
C
Raw Normal View History

2022-02-06 10:56:57 +01:00
// Copyright (C) 2021-2022, Dmitry Maluev (dmaluev@gmail.com). All rights reserved.
2018-03-03 09:17:09 +01:00
#pragma once
#include "Settings.h"
#include "Window.h"
2021-03-02 17:55:10 +01:00
#include "UndoManager.h"
2018-03-03 09:17:09 +01:00
namespace verus
{
void Make_App();
void Free_App();
}
2023-08-12 13:43:56 +02:00
namespace verus::App
2018-03-03 09:17:09 +01:00
{
2023-08-12 13:43:56 +02:00
void RunEventLoop();
2018-03-03 09:17:09 +01:00
}