#include "include/Engine.h" namespace SE { TApplicationInterface::TApplicationInterface() : IsConsoleOut(false) { } void TApplicationInterface::OuterInit(int screenWidth, int screenHeight, float matrixWidth, float matrixHeight) { ResourceManager->ScriptManager.BindBasicFunctions(); Renderer->InitOpenGL(screenWidth, screenHeight, matrixWidth, matrixHeight); InnerInit(); CheckGlError(); srand(static_cast(time(0))); } void TApplicationInterface::OuterDeinit() { CheckGlError("OuterDeinit"); InnerDeinit(); } } //namespace SE