Added Logging

This commit is contained in:
Jordon Brooks 2023-05-01 23:45:29 +01:00
parent 531cfbd006
commit 9d4436cc00

View file

@ -1,5 +1,7 @@
#include "Application.h"
#include "Log.h"
namespace Flux {
Application::Application()
@ -11,6 +13,7 @@ namespace Flux {
}
void Application::Run()
{
FLUX_CORE_TRACE("FLUX Engine Running!");
while (true);
}
}