2#include "Hana/Core/Core.h"
4#ifdef HN_PLATFORM_WINDOWS
8int main(
int argc,
char** argv)
12 HN_PROFILE_BEGIN_SESSION(
"Startup",
"HanaProfile-Startup.json");
13 auto app = Hana::CreateApplication();
14 HN_PROFILE_END_SESSION();
16 HN_PROFILE_BEGIN_SESSION(
"Runtime",
"HanaProfile-Runtime.json");
18 HN_PROFILE_END_SESSION();
20 HN_PROFILE_BEGIN_SESSION(
"Shutdown",
"HanaProfile-Shutdown.json");
22 HN_PROFILE_END_SESSION();
Definition Application.h:17