sculpto
Classes | Namespaces | Functions
application.h File Reference


More...

#include "timer.h"
#include "window.h"
#include "layers_stack.h"
#include "../events/events.h"
#include "../gui/gui.h"

Go to the source code of this file.

Classes

class  scl::abstract
 

Namespaces

namespace  scl
 

Functions

int main (int argc, char *argv[])
 
application * scl::CreateApplication ()
 

Detailed Description


Author
Sabitov Kirill
Date
18 June 2022

Definition in file application.h.

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)
  • Main programm function.
Parameters
argc- application run arguments count.
argv- application run arguments array.
Returns
system return code.

Definition at line 22 of file entry_point.h.

23{
24 auto app = scl::CreateApplication();
25 app->Run();
26 delete app, app = nullptr;
27}
application * CreateApplication()